23 lines
723 B
XML
23 lines
723 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout
|
||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
|
||
|
<androidx.recyclerview.widget.RecyclerView
|
||
|
android:id="@+id/recyclerView"
|
||
|
android:layout_width="70dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:background="@drawable/bg_live_gift_group"
|
||
|
android:overScrollMode="never"
|
||
|
/>
|
||
|
|
||
|
<ImageView
|
||
|
android:layout_width="20dp"
|
||
|
android:layout_height="10dp"
|
||
|
android:layout_gravity="center_horizontal"
|
||
|
android:src="@mipmap/icon_live_gift_1"
|
||
|
/>
|
||
|
</LinearLayout>
|