fragment_gift_receycel.xml
1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?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>
<LinearLayout
android:id="@+id/ll_item"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="5dp"
android:orientation="vertical">
<ImageView
android:id="@+id/avaimg"
android:layout_width="40dp"
android:layout_height="40dp"
android:src="@{dataBean.imgSource}"
/>
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@android:color/white"
android:layout_centerInParent="true"
android:text="@{dataBean.giftMessage}"/>
</RelativeLayout>
</LinearLayout>
</layout>