diff options
| author | Benjamin Linskey | 2025-10-07 03:07:54 -0400 |
|---|---|---|
| committer | Benjamin Linskey | 2025-10-07 03:18:21 -0400 |
| commit | 70ac7fd3afced8974373ac1d0dcc008baca1d44d (patch) | |
| tree | 65c0bf65a670e4c1743bd46e9fe75197e4f85bd7 | |
| parent | 7671604dec4d6211fcd601dc1dc8d0b0e0bc70c6 (diff) | |
| download | greek-reference-70ac7fd3afced8974373ac1d0dcc008baca1d44d.tar.gz | |
Fix tablet two-pane layout
Fixed a bug that caused the entire layout to be covered by a tint and changed top system bar color to main accent color.
| -rw-r--r-- | GreekReference/src/main/res/layout/activity_item_twopane.xml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/GreekReference/src/main/res/layout/activity_item_twopane.xml b/GreekReference/src/main/res/layout/activity_item_twopane.xml index 017baea..d42face 100644 --- a/GreekReference/src/main/res/layout/activity_item_twopane.xml +++ b/GreekReference/src/main/res/layout/activity_item_twopane.xml @@ -4,12 +4,13 @@ android:id="@+id/drawer_layout" android:layout_width="match_parent" android:layout_height="match_parent" - android:background="?attr/colorPrimaryDark"> + android:background="?attr/colorPrimary"> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" - android:orientation="vertical"> + android:orientation="vertical" + android:fitsSystemWindows="false"> <include layout="@layout/action_bar"/> @@ -20,6 +21,7 @@ android:divider="?android:attr/dividerHorizontal" android:orientation="horizontal" android:showDividers="middle" + android:background="@color/background_white" tools:context=".ItemListActivity"> <FrameLayout |