IOS
hefeixia
2021-02-18 49f3c1374873f73dbde2983ca0fcf1fb10bfedbf
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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/layout_praise_and_comment"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/base_F2F2F2"
    android:orientation="vertical"
    android:paddingTop="8dp"
    android:paddingBottom="8dp">
 
    <TextView
        android:id="@+id/praise_content"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="8dp"
        android:layout_marginRight="4dp"
        android:textColor="#697A9F"
        android:textSize="14sp"
        android:textStyle="bold" />
 
    <View
        android:id="@+id/view_line"
        android:layout_width="match_parent"
        android:layout_height="0.5dp"
        android:layout_marginTop="6dp"
        android:layout_marginBottom="6dp"
        android:background="@color/base_E7E7E7" />
 
    <cn.wildfire.chat.moment.third.widgets.VerticalCommentWidget
        android:id="@+id/vertical_comment_widget"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="8dp"
        android:layout_marginRight="4dp"
        android:orientation="vertical" />
</LinearLayout>