voice_layout_item_oppsite.xml
2.02 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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingBottom="10dp"
android:paddingTop="10dp">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:id="@+id/voice_user_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:text="游客"
android:textColor="#d61d0c" />
<RelativeLayout
android:id="@+id/voice_content"
android:layout_width="71dp"
android:layout_height="48dp"
android:layout_marginLeft="5dp"
android:layout_toRightOf="@+id/voice_user_name"
android:background="@drawable/voice_bg_left">
<ImageView
android:id="@+id/voiceAnim"
android:layout_width="11dp"
android:layout_height="17dp"
android:layout_centerVertical="true"
android:layout_marginLeft="10dp"
android:background="@drawable/left_voice" />
</RelativeLayout>
<TextView
android:id="@+id/voice_duration"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_toRightOf="@id/voice_content" />
<View
android:id="@+id/noneRead"
android:layout_width="10dp"
android:layout_height="10dp"
android:layout_centerVertical="true"
android:layout_marginLeft="2dp"
android:layout_toRightOf="@+id/voice_duration"
android:background="@drawable/voice_none_read"
android:visibility="gone" />
</RelativeLayout>
</RelativeLayout>