item_room_msg_emoji.xml
2.75 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:emojicon="http://schemas.android.com/apk/res-auto"
xmlns:tool="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="10dp">
<LinearLayout
android:id="@+id/ll_user"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:orientation="horizontal">
<com.chudiangameplay.android.ui.view.RoundImageView
android:id="@+id/iv_head"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_margin="1dp"
android:scaleType="fitXY"
android:src="@drawable/ico_default_img_fang"
app:type="circle" />
<View
android:layout_width="10dp"
android:layout_height="0dp" />
<TextView
android:id="@+id/tv_char"
android:layout_width="14dp"
android:layout_height="14dp"
android:layout_marginRight="4dp"
android:background="@drawable/shape_round2dp_3f95ff"
android:gravity="center"
android:text="主"
android:textColor="#fff"
android:textSize="10sp" />
<ImageView
android:id="@+id/iv_badge"
android:layout_width="20dp"
android:layout_height="20dp"
android:layout_marginRight="4dp"
android:src="@drawable/ico_default_img_fang"
android:visibility="gone" />
<ImageView
android:id="@+id/iv_vip"
android:layout_width="36dp"
android:layout_height="14dp"
android:layout_marginRight="4dp"
android:visibility="gone" />
<TextView
android:id="@+id/tv_user"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:textColor="@color/chat_text"
android:textSize="12sp"
tool:text="角色" />
</LinearLayout>
<ImageView
android:id="@+id/iv_emoji"
android:layout_width="46dp"
android:layout_height="34dp"
android:layout_below="@+id/ll_user"
android:layout_marginLeft="40dp"
android:layout_marginTop="2dp"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:paddingTop="4dp"
android:paddingBottom="4dp"
android:background="@drawable/shape_romm_msg"
android:src="@drawable/ico_default_img_fang" />
</RelativeLayout>