lmw
2023-05-12 3408b10a3466f2db3f81e5c484142e3c180d36ac
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/bg_main"
    android:orientation="vertical">
 
    <LinearLayout
        android:background="@color/write"
        android:layout_width="match_parent"
        android:gravity="center"
        android:layout_height="40dp"
        android:layout_centerInParent="true"
        android:orientation="horizontal">
 
        <TextView
            android:id="@+id/tv_line"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="南宁市"
            android:textColor="#ff27282d"
            android:textSize="14sp"
            android:textStyle="bold" />
 
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:drawableEnd="@mipmap/icon_right"
            android:textColor="#ff27282d"
            android:layout_marginStart="10dp"
            android:layout_marginEnd="10dp"
            android:textSize="14sp"
            android:textStyle="bold" />
 
 
        <TextView
            android:id="@+id/tv_line_two"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginEnd="10dp"
            android:text="南宁市"
            android:textColor="#ff27282d"
            android:textSize="14sp"
            android:textStyle="bold" />
 
 
    </LinearLayout>
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="60dp"
        android:orientation="horizontal">
 
        <androidx.recyclerview.widget.RecyclerView
            android:id="@+id/recycler_view_time"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1" />
 
        <TextView
            android:id="@+id/tv_more_time"
            android:layout_width="53dp"
            android:layout_height="match_parent"
            android:background="#ECECEC"
            android:drawableEnd="@mipmap/more_gray"
            android:gravity="center_vertical"
            android:textStyle="bold"
            android:paddingStart="7dp"
            android:paddingEnd="6dp"
            android:text="更多\n日期"
            android:textColor="#ff27282d"
            android:textSize="12sp" />
 
    </LinearLayout>
 
    <com.scwang.smartrefresh.layout.SmartRefreshLayout
        android:id="@+id/smart_refresh_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior"
        app:srlEnableAutoLoadMore="false">
 
        <com.scwang.smartrefresh.layout.header.ClassicsHeader
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center" />
 
        <androidx.recyclerview.widget.RecyclerView
            android:id="@+id/recycler_view_content"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />
 
        <com.scwang.smartrefresh.layout.footer.ClassicsFooter
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            app:srlTextNothing="没有更多了"
            app:srlTextSizeTitle="12sp" />
 
    </com.scwang.smartrefresh.layout.SmartRefreshLayout>
 
</LinearLayout>