fragment_gift_receycel.xml
1.01 KB
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android">
<data>
<variable
name="dataBean"
type="com.cnlive.gundam.video.model.GiftModle" />
</data>
<RelativeLayout
android:background="@drawable/record_end"
android:id="@+id/ll_item"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/avaimg"
android:layout_width="40dp"
android:layout_height="40dp"
android:src="@{dataBean.imgSource}"
android:layout_centerHorizontal="true"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_below="@+id/avaimg"
android:text="@{dataBean.giftMessage}"
android:textColor="@android:color/white" />
</RelativeLayout>
</layout>