kimi
2021-02-18 0ac056bb5b4c567293482286c80a1b83a467cd33
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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:orientation="vertical">
 
    <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@drawable/selector_common_item"
            android:gravity="center_vertical"
            android:orientation="horizontal"
            android:paddingLeft="@dimen/magin_common"
            android:paddingRight="16dp">
 
        <cn.wildfire.chat.kit.widget.RoundImageView
                android:id="@+id/portraitImageView"
                android:layout_width="50dp"
                android:layout_height="50dp"
                app:roundSize="12dp"
                android:layout_centerVertical="true"
                android:layout_marginTop="@dimen/magin_common"
                android:layout_marginBottom="@dimen/magin_common"
                android:scaleType="centerCrop"
                android:src="@mipmap/avatar_def" />
        <TextView
                android:layout_marginLeft="@dimen/magin_common"
                android:id="@+id/nameTextView"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="wfc"
                android:textColor="@color/black1"
                android:textSize="16sp" />
 
 
 
    </LinearLayout>
 
    <View
            android:id="@+id/dividerLine"
            style="@style/Line"
            android:layout_marginLeft="76dp"
            android:visibility="visible" />
</LinearLayout>