diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2025-05-08 12:16:17 +0300 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2025-05-08 12:16:17 +0300 |
| commit | 50fda990597685a641cf12387d882c90ee05c2a3 (patch) | |
| tree | 200bf210415e66bf5706b84ec2e651225df0772a /org.fox.ttrss/src/main/res | |
| parent | 4d6867e6909a3c4f07ca99d960b3c37564d31325 (diff) | |
enable main window edge-to-edge attempt after reading documentation a bit
Diffstat (limited to 'org.fox.ttrss/src/main/res')
6 files changed, 4 insertions, 6 deletions
diff --git a/org.fox.ttrss/src/main/res/layout-sw600dp-land/activity_master.xml b/org.fox.ttrss/src/main/res/layout-sw600dp-land/activity_master.xml index f44e0e4a..eb2d9c91 100644 --- a/org.fox.ttrss/src/main/res/layout-sw600dp-land/activity_master.xml +++ b/org.fox.ttrss/src/main/res/layout-sw600dp-land/activity_master.xml @@ -22,7 +22,7 @@ <com.google.android.material.navigation.NavigationView xmlns:app="http://schemas.android.com/apk/res-auto" - android:id="@+id/navigationView" + android:id="@+id/navigation_view" android:layout_width="300dp" android:layout_height="match_parent" android:layout_gravity="start" diff --git a/org.fox.ttrss/src/main/res/layout-sw600dp-port/activity_master.xml b/org.fox.ttrss/src/main/res/layout-sw600dp-port/activity_master.xml index 1f422b6a..4ea81118 100644 --- a/org.fox.ttrss/src/main/res/layout-sw600dp-port/activity_master.xml +++ b/org.fox.ttrss/src/main/res/layout-sw600dp-port/activity_master.xml @@ -2,7 +2,6 @@ <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" - android:fitsSystemWindows="true" android:layout_height="match_parent"> <include layout="@layout/layout_master_phone" /> diff --git a/org.fox.ttrss/src/main/res/layout/activity_master.xml b/org.fox.ttrss/src/main/res/layout/activity_master.xml index 1f422b6a..4ea81118 100755 --- a/org.fox.ttrss/src/main/res/layout/activity_master.xml +++ b/org.fox.ttrss/src/main/res/layout/activity_master.xml @@ -2,7 +2,6 @@ <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" - android:fitsSystemWindows="true" android:layout_height="match_parent"> <include layout="@layout/layout_master_phone" /> diff --git a/org.fox.ttrss/src/main/res/layout/activity_master_phone.xml b/org.fox.ttrss/src/main/res/layout/activity_master_phone.xml index f6e5db8f..4ea81118 100644 --- a/org.fox.ttrss/src/main/res/layout/activity_master_phone.xml +++ b/org.fox.ttrss/src/main/res/layout/activity_master_phone.xml @@ -1,7 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:fitsSystemWindows="true" android:layout_width="match_parent" android:layout_height="match_parent"> diff --git a/org.fox.ttrss/src/main/res/layout/drawer_header.xml b/org.fox.ttrss/src/main/res/layout/drawer_header.xml index 3540c094..f4954259 100755 --- a/org.fox.ttrss/src/main/res/layout/drawer_header.xml +++ b/org.fox.ttrss/src/main/res/layout/drawer_header.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" - android:layout_height="96dp" + android:layout_height="72dp" xmlns:tools="http://schemas.android.com/tools" xmlns:app="http://schemas.android.com/apk/res-auto" android:orientation="vertical" diff --git a/org.fox.ttrss/src/main/res/layout/layout_master_phone.xml b/org.fox.ttrss/src/main/res/layout/layout_master_phone.xml index e19d4c90..0dda6c7b 100644 --- a/org.fox.ttrss/src/main/res/layout/layout_master_phone.xml +++ b/org.fox.ttrss/src/main/res/layout/layout_master_phone.xml @@ -6,6 +6,7 @@ <androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:app="http://schemas.android.com/apk/res-auto" + android:id="@+id/headlines_coordinator" android:layout_width="match_parent" android:layout_height="match_parent"> @@ -36,7 +37,7 @@ <com.google.android.material.navigation.NavigationView xmlns:app="http://schemas.android.com/apk/res-auto" - android:id="@+id/navigationView" + android:id="@+id/modal_navigation_view" android:layout_width="300dp" android:layout_height="match_parent" android:layout_gravity="start"> |