lmw
2024-09-25 92778728b83ce1a34ba21bcdb061afdeca16cce5
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:scrollbars="none"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">
        <androidx.constraintlayout.widget.ConstraintLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@drawable/bg_white_10dp"
            android:elevation="1dp"
            android:paddingBottom="10dp"
            android:layout_marginHorizontal="14dp"
            app:layout_constraintTop_toTopOf="parent"
            android:layout_marginTop="5dp">
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:id="@+id/tv_change"
                app:layout_constraintTop_toTopOf="parent"
                app:layout_constraintStart_toStartOf="parent"
                android:layout_marginStart="14dp"
                android:layout_marginTop="10dp"
                android:text="星座运势"
                android:textSize="14sp"
                android:textColor="@color/textColor"
                android:textStyle="bold"
                android:drawablePadding="6dp"
                android:drawableEnd="@mipmap/ic_switch"/>
            <TextView
                android:id="@+id/tv_time"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintTop_toTopOf="parent"
                android:layout_margin="11dp"
                android:textSize="12sp"/>
            <androidx.recyclerview.widget.RecyclerView
                android:id="@+id/rv_luck"
                android:layout_width="match_parent"
                app:layout_constraintBottom_toBottomOf="parent"
                android:layout_height="wrap_content"
                app:layout_constraintTop_toBottomOf="@id/tv_change"/>
        </androidx.constraintlayout.widget.ConstraintLayout>
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:layout_marginTop="17dp"
            android:layout_marginHorizontal="14dp"
            android:background="@drawable/bg_white_10dp"
            android:layout_marginBottom="20dp"
            android:elevation="1dp">
 
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="今日概述"
                android:textStyle="bold"
                android:textSize="16sp"
                android:id="@+id/tv_1"
                android:textColor="@color/textColor"
                android:layout_marginStart="14dp"
                android:layout_marginTop="12dp"/>
            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:id="@+id/tv_tip"
                android:layout_marginTop="5dp"
                android:layout_marginBottom="17dp"
                android:layout_marginHorizontal="14dp"
                android:textSize="12sp"/>
        </LinearLayout>
    </LinearLayout>
 
 
</ScrollView>