2019-03-27 16:34:10 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:minHeight="@dimen/bottom_sheet_selected_item_title_height">
|
|
|
|
|
2020-03-04 15:12:06 +01:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2019-03-27 16:34:10 +01:00
|
|
|
android:id="@+id/recycler_view"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:clipToPadding="false"
|
|
|
|
android:orientation="horizontal"
|
2020-03-04 15:12:06 +01:00
|
|
|
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
|
2019-03-27 16:34:10 +01:00
|
|
|
tools:listitem="@layout/bottom_sheet_item_with_descr_56dp" />
|
|
|
|
|
|
|
|
</LinearLayout>
|