diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2025-05-07 19:11:04 +0300 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2025-05-07 19:11:04 +0300 |
| commit | 4c03c594838e3f75b4f6ae72b2839e0219f37347 (patch) | |
| tree | 8794700172b62968124095ac288b431a43a263e7 | |
| parent | a354d2a348099be7e3cacc0441dd5c19944cd7a6 (diff) | |
disable drawer edge-to-edge because of issues with cutout displays
4 files changed, 3 insertions, 1 deletions
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 9bb837cb..583161a6 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,6 +2,7 @@ <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/master_drawer_layout" /> 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 9bb837cb..583161a6 100755 --- a/org.fox.ttrss/src/main/res/layout/activity_master.xml +++ b/org.fox.ttrss/src/main/res/layout/activity_master.xml @@ -2,6 +2,7 @@ <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/master_drawer_layout" /> 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 9bb837cb..29c37c86 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,6 +1,7 @@ <?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/master_drawer_layout.xml b/org.fox.ttrss/src/main/res/layout/master_drawer_layout.xml index 4ce1249a..e19d4c90 100644 --- a/org.fox.ttrss/src/main/res/layout/master_drawer_layout.xml +++ b/org.fox.ttrss/src/main/res/layout/master_drawer_layout.xml @@ -5,7 +5,6 @@ android:layout_height="fill_parent"> <androidx.coordinatorlayout.widget.CoordinatorLayout - android:fitsSystemWindows="true" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent"> |