activity_layout_list.xml raw
1 <?xml version="1.0" encoding="utf-8"?>
2 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:layout_width="match_parent"
4 android:layout_height="match_parent">
5
6 <ImageView
7 android:id="@+id/preview"
8 android:layout_width="match_parent"
9 android:layout_height="match_parent"
10 android:layout_above="@id/layout_list"
11 android:padding="?dialogPreferredPadding"
12 android:contentDescription="@null" />
13
14 <androidx.recyclerview.widget.RecyclerView
15 android:id="@+id/layout_list"
16 android:layout_width="match_parent"
17 android:layout_height="wrap_content"
18 android:layout_alignParentBottom="true"
19 android:scrollbars="horizontal"
20 android:fadeScrollbars="false"/>
21 </RelativeLayout>