24 lines
860 B
XML
24 lines
860 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:id="@+id/ll_cotainer"
|
||
|
|
android:layout_width="@dimen/dp_88"
|
||
|
|
android:background="@drawable/bg_r6_fff"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="vertical">
|
||
|
|
|
||
|
|
<androidx.recyclerview.widget.RecyclerView
|
||
|
|
android:id="@+id/rv_gift_num_window"
|
||
|
|
android:layout_width="@dimen/dp_72"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:padding="@dimen/dp_8"
|
||
|
|
android:fadingEdge="none"
|
||
|
|
android:overScrollMode="never"
|
||
|
|
tools:itemCount="9"
|
||
|
|
tools:listitem="@layout/room_rv_item_gift_num_windows" />
|
||
|
|
|
||
|
|
|
||
|
|
</LinearLayout>
|