summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/feedsettings.xml
diff options
context:
space:
mode:
authorByteHamster <info@bytehamster.com>2022-08-07 11:25:51 +0200
committerByteHamster <info@bytehamster.com>2022-09-18 19:12:41 +0200
commita524b810603a78afc6503d01e6aeb788ea14401a (patch)
tree9659721a6dbbfe853c50264668c0505891826fc1 /app/src/main/res/layout/feedsettings.xml
parente5d2d1b6ef6eec995e2ef7e714653567e349e59e (diff)
downloadAntennaPod-a524b810603a78afc6503d01e6aeb788ea14401a.zip
Expand app below system windows
Diffstat (limited to 'app/src/main/res/layout/feedsettings.xml')
-rw-r--r--app/src/main/res/layout/feedsettings.xml40
1 files changed, 21 insertions, 19 deletions
diff --git a/app/src/main/res/layout/feedsettings.xml b/app/src/main/res/layout/feedsettings.xml
index beadf7c75..b9a220a02 100644
--- a/app/src/main/res/layout/feedsettings.xml
+++ b/app/src/main/res/layout/feedsettings.xml
@@ -1,25 +1,27 @@
<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
+<LinearLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:app="http://schemas.android.com/apk/res-auto"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:fitsSystemWindows="true"
+ android:orientation="vertical">
<com.google.android.material.appbar.MaterialToolbar
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:minHeight="?attr/actionBarSize"
- android:theme="?attr/actionBarTheme"
- app:title="@string/feed_settings_label"
- app:navigationContentDescription="@string/toolbar_back_button_content_description"
- app:navigationIcon="?homeAsUpIndicator"
- android:elevation="4dp"
- android:id="@+id/toolbar"/>
+ android:id="@+id/toolbar"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:minHeight="?attr/actionBarSize"
+ android:theme="?attr/actionBarTheme"
+ android:elevation="4dp"
+ app:title="@string/feed_settings_label"
+ app:navigationContentDescription="@string/toolbar_back_button_content_description"
+ app:navigationIcon="?homeAsUpIndicator" />
<androidx.fragment.app.FragmentContainerView
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_weight="1"
- android:id="@+id/settings_fragment_container" />
+ android:id="@+id/settings_fragment_container"
+ android:layout_width="match_parent"
+ android:layout_height="0dp"
+ android:layout_weight="1" />
-</LinearLayout> \ No newline at end of file
+</LinearLayout>