zhujie
2025-04-03 db2e408f6c2eddc363ed76e0f5fd1e59a02aa175
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
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="60dp"
    android:minHeight="60dp"
    android:gravity="center_vertical"
    android:orientation="horizontal"
    android:padding="8dp">
 
    <de.hdodenhof.circleimageview.CircleImageView
        android:id="@+id/avatar"
        android:layout_width="40dp"
        android:layout_height="40dp"
        android:src="@drawable/avatar"
        android:paddingLeft="10dp" />
 
    <TextView
        android:id="@+id/recordmessage"
        android:layout_width="260dp"
        android:layout_height="60dp"
        android:layout_marginStart="12dp"
        android:paddingTop="20dp"
        android:textAlignment="center"
        android:textColor="#333333"
        android:textSize="14sp" />
 
    <TextView
        android:id="@+id/recordstatus"
        android:layout_width="match_parent"
        android:layout_height="60dp"
        android:layout_marginStart="12dp"
        android:textColor="#333333"
        android:textAlignment="center"
        android:paddingTop="20dp"
        android:textSize="14sp" />
</LinearLayout>