summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/res/layout/dialog_list.xml
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-10-31 21:55:57 +0100
committerGitHub <noreply@github.com>2023-10-31 21:55:57 +0100
commit7e284809dea3134c7d57db602deb9893170ec2ca (patch)
treec5d6d6f37bffaf610266516cd3c276f2b3f842bc /src/android/app/src/main/res/layout/dialog_list.xml
parentMerge pull request #11929 from dima-xd/swkbd-applet (diff)
parentandroid: Initialize filesystem components during application start (diff)
downloadyuzu-7e284809dea3134c7d57db602deb9893170ec2ca.tar
yuzu-7e284809dea3134c7d57db602deb9893170ec2ca.tar.gz
yuzu-7e284809dea3134c7d57db602deb9893170ec2ca.tar.bz2
yuzu-7e284809dea3134c7d57db602deb9893170ec2ca.tar.lz
yuzu-7e284809dea3134c7d57db602deb9893170ec2ca.tar.xz
yuzu-7e284809dea3134c7d57db602deb9893170ec2ca.tar.zst
yuzu-7e284809dea3134c7d57db602deb9893170ec2ca.zip
Diffstat (limited to 'src/android/app/src/main/res/layout/dialog_list.xml')
-rw-r--r--src/android/app/src/main/res/layout/dialog_list.xml15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/android/app/src/main/res/layout/dialog_list.xml b/src/android/app/src/main/res/layout/dialog_list.xml
new file mode 100644
index 000000000..7de2b2c3a
--- /dev/null
+++ b/src/android/app/src/main/res/layout/dialog_list.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="utf-8"?>
+<androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content">
+
+ <androidx.recyclerview.widget.RecyclerView
+ android:id="@+id/dialog_list"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:clipToPadding="false"
+ android:fadeScrollbars="false"
+ android:paddingVertical="12dp"
+ android:scrollbars="vertical" />
+
+</androidx.appcompat.widget.LinearLayoutCompat>