summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/nav_list.xml
diff options
context:
space:
mode:
authorByteHamster <ByteHamster@users.noreply.github.com>2022-09-18 21:42:21 +0200
committerGitHub <noreply@github.com>2022-09-18 21:42:21 +0200
commit261c7982defc86607a45acaba01c913abe0e6582 (patch)
tree019b84db0cce18b8a7d4ce0a9a50adc7f05b969e /app/src/main/res/layout/nav_list.xml
parent8426e32fe8c485b14fc33081313c0909e54bd618 (diff)
parentcbff160bd549ee4e093491512acd99970cd9a2b6 (diff)
downloadAntennaPod-261c7982defc86607a45acaba01c913abe0e6582.zip
Merge pull request #6002 from ByteHamster/material3
Material Design 3
Diffstat (limited to 'app/src/main/res/layout/nav_list.xml')
-rw-r--r--app/src/main/res/layout/nav_list.xml15
1 files changed, 10 insertions, 5 deletions
diff --git a/app/src/main/res/layout/nav_list.xml b/app/src/main/res/layout/nav_list.xml
index a24ea3fba..52fde0a5f 100644
--- a/app/src/main/res/layout/nav_list.xml
+++ b/app/src/main/res/layout/nav_list.xml
@@ -1,16 +1,19 @@
-<?xml version='1.0' encoding='utf-8'?>
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+<?xml version="1.0" encoding="utf-8"?>
+<RelativeLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/nav_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
+ android:fitsSystemWindows="true"
android:background="?android:attr/windowBackground">
<LinearLayout
android:id="@+id/nav_settings"
android:layout_width="match_parent"
android:layout_height="@dimen/listitem_iconwithtext_height"
+ android:fitsSystemWindows="true"
android:layout_alignParentBottom="true"
android:background="?attr/selectableItemBackground"
android:contentDescription="@string/settings_label"
@@ -46,6 +49,7 @@
android:textColor="?android:attr/textColorPrimary"
android:textSize="@dimen/text_size_navdrawer"
tools:background="@android:color/holo_green_light" />
+
</LinearLayout>
<View
@@ -73,9 +77,10 @@
tools:listitem="@layout/nav_listitem" />
<ProgressBar
- style="?android:attr/progressBarStyle"
+ android:id="@+id/progressBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:id="@+id/progressBar"
- android:layout_centerVertical="true"/>
+ android:layout_centerVertical="true"
+ style="?android:attr/progressBarStyle" />
+
</RelativeLayout>