summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/res/layout/fragment_home_settings.xml
diff options
context:
space:
mode:
authorCharles Lombardo <clombardo169@gmail.com>2023-04-28 04:59:01 +0200
committerbunnei <bunneidev@gmail.com>2023-06-03 09:05:55 +0200
commitc070a588b9ee286d2b5844b615e53026e8e5bd5a (patch)
tree69dbd2c04789f374db7e71f1f2e201901cda80af /src/android/app/src/main/res/layout/fragment_home_settings.xml
parentandroid: Properly pop setup fragment from the back stack (diff)
downloadyuzu-c070a588b9ee286d2b5844b615e53026e8e5bd5a.tar
yuzu-c070a588b9ee286d2b5844b615e53026e8e5bd5a.tar.gz
yuzu-c070a588b9ee286d2b5844b615e53026e8e5bd5a.tar.bz2
yuzu-c070a588b9ee286d2b5844b615e53026e8e5bd5a.tar.lz
yuzu-c070a588b9ee286d2b5844b615e53026e8e5bd5a.tar.xz
yuzu-c070a588b9ee286d2b5844b615e53026e8e5bd5a.tar.zst
yuzu-c070a588b9ee286d2b5844b615e53026e8e5bd5a.zip
Diffstat (limited to 'src/android/app/src/main/res/layout/fragment_home_settings.xml')
-rw-r--r--src/android/app/src/main/res/layout/fragment_home_settings.xml30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/android/app/src/main/res/layout/fragment_home_settings.xml b/src/android/app/src/main/res/layout/fragment_home_settings.xml
new file mode 100644
index 000000000..e0c609309
--- /dev/null
+++ b/src/android/app/src/main/res/layout/fragment_home_settings.xml
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="utf-8"?>
+<androidx.core.widget.NestedScrollView
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/scroll_view_settings"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:background="?attr/colorSurface"
+ android:clipToPadding="false">
+
+ <androidx.appcompat.widget.LinearLayoutCompat
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical"
+ android:background="?attr/colorSurface">
+
+ <ImageView
+ android:layout_width="128dp"
+ android:layout_height="128dp"
+ android:layout_margin="64dp"
+ android:layout_gravity="center_horizontal"
+ android:src="@drawable/ic_yuzu_full" />
+
+ <androidx.recyclerview.widget.RecyclerView
+ android:id="@+id/home_settings_list"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent" />
+
+ </androidx.appcompat.widget.LinearLayoutCompat>
+
+</androidx.core.widget.NestedScrollView>