summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/res/layout/fragment_home_settings.xml
blob: d84093ba3239bf4b57aacde7940995c76150b920 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?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:scrollbars="vertical"
    android:fadeScrollbars="false"
    android:clipToPadding="false">

    <androidx.appcompat.widget.LinearLayoutCompat
        android:id="@+id/linear_layout_settings"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:background="?attr/colorSurface"
        android:paddingHorizontal="8dp">

        <ImageView
            android:id="@+id/logo_image"
            android:layout_width="96dp"
            android:layout_height="96dp"
            android:layout_marginVertical="32dp"
            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>