lv_chat_item_receive.xml
1.81 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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:fresco="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.facebook.drawee.view.SimpleDraweeView
android:id="@+id/chat_header"
android:layout_marginLeft="12dp"
android:layout_marginTop="24dp"
android:layout_width="29dp"
android:layout_height="29dp"
fresco:actualImageScaleType="centerInside"
fresco:placeholderImage="@mipmap/ic_launcher"
fresco:roundAsCircle="true"
android:layout_gravity="center_vertical"
android:src="@mipmap/ic_launcher"/>
<TextView
android:paddingLeft="6dp"
android:layout_marginTop="24dp"
android:id="@+id/tv_chatName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=""
android:textSize="12sp"
android:textColor="@color/vip_tip"
android:layout_toRightOf="@id/chat_header"
android:gravity="center_vertical" />
<TextView
android:paddingLeft="12dp"
android:layout_marginTop="5dp"
android:id="@+id/tv_chatContent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=""
android:textSize="13sp"
android:textColor="@color/colorPrimary"
android:layout_toRightOf="@id/chat_header"
android:layout_below="@id/tv_chatName"
android:gravity="center_vertical"
android:background="@drawable/chat_msg_left"/>
</RelativeLayout>