summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/res/layout/dialog_list.xml
blob: 7de2b2c3ab192545b61360d006c0452814b22d5d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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>