19 lines
761 B
XML
19 lines
761 B
XML
<?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">
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
android:id="@+id/recycler_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:clipToPadding="false"
|
|
android:orientation="horizontal"
|
|
app:layoutManager="android.support.v7.widget.LinearLayoutManager"
|
|
tools:listitem="@layout/bottom_sheet_item_with_descr_56dp" />
|
|
|
|
</LinearLayout>
|