lmw
2025-04-24 718f31c92e2029d05260810435a2c70cef6e6ce5
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
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/page_bg">
    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@drawable/bg_white_10dp"
        android:layout_marginVertical="12dp"
        android:layout_marginHorizontal="14dp">
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">
            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:id="@+id/tv_title"
                android:layout_marginTop="7dp"
                android:layout_marginHorizontal="13dp"
                android:textSize="16sp"
                android:textColor="@color/textColor"
                android:textStyle="bold"
                android:text="这是消息标题这是消息标题这是消息标题这是"/>
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:id="@+id/tv_time"
                android:layout_marginStart="13dp"
                android:layout_marginTop="8dp"
                android:text="2023.11.11 12:00"
                android:textSize="12sp"
                android:textColor="@color/textColor66"/>
            <View
                android:layout_width="match_parent"
                android:layout_height="1px"
                android:background="@color/dividing_line_color"
                android:layout_marginTop="8dp"
                android:layout_marginHorizontal="14dp"/>
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:id="@+id/tv_content"
                android:layout_marginHorizontal="13dp"
                android:layout_marginTop="10dp"
                android:text="这是内容详情这是内容详情这是内容详情这是"
                android:textSize="12sp"
                android:textColor="@color/textColor66"/>
        </LinearLayout>
    </ScrollView>
</androidx.constraintlayout.widget.ConstraintLayout>