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
47
48
49
50
51
52
53
54
55
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/base_FFFFFF"
    android:paddingLeft="16dp"
    android:paddingTop="14dp"
    android:paddingRight="16dp"
    android:paddingBottom="10dp">
 
    <ImageView
        android:id="@+id/img_avatar"
        android:layout_width="42dp"
        android:layout_height="42dp"
        android:background="@drawable/rect_f0f0f0_10dp"
        android:padding="1dp" />
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="54dp"
        android:orientation="vertical">
 
        <TextView
            android:id="@+id/txt_user_name"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginBottom="10dp"
            android:background="@drawable/selector_view_content_state"
            android:clickable="true"
            android:textColor="@color/blue3"
            android:textSize="16sp"
            android:textStyle="bold" />
 
        <include layout="@layout/include_item_recycler_content" />
 
        <include layout="@layout/view_translation_layout" />
 
        <cn.wildfire.chat.moment.third.widgets.NineGridView
            android:id="@+id/nine_grid_view"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dp"
            android:layout_marginRight="45dp"
            android:layout_marginBottom="10dp" />
 
        <include layout="@layout/include_item_recycler_location" />
 
        <include layout="@layout/include_item_recycler_time" />
 
        <include layout="@layout/include_item_recycler_praise_and_comment" />
 
    </LinearLayout>
 
</FrameLayout>