lmw
2024-06-07 4264d859bb9f6cbc4c069a9350c917f1b23009dd
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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
    android:orientation="vertical"
    android:background="@color/bg_main"
    android:layout_height="match_parent">
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="45dp"
        android:background="@color/write"
        android:orientation="horizontal">
 
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginStart="14dp"
            android:layout_gravity="center_vertical"
            android:text="按首字母筛选"
            android:textColor="#333333"
            android:textSize="13sp"
            />
 
        <include layout="@layout/include_weight_width"/>
 
        <TextView
            android:id="@+id/tv_cancel"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical"
            android:paddingEnd="14dp"
            android:paddingStart="14dp"
            android:text="取消"
            android:textColor="#ff666666"
            android:textSize="14sp"
            />
 
    </LinearLayout>
 
    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/recycler_view_letter"
        android:paddingStart="9dp"
        android:paddingBottom="8dp"
        android:paddingEnd="9dp"
        android:background="@color/write"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>
 
    <androidx.recyclerview.widget.RecyclerView
        android:layout_marginTop="2dp"
        android:background="@color/write"
        android:id="@+id/recycler_view_city"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>
 
    <TextView
        android:id="@+id/tv_hint"
        android:gravity="center"
        android:textColor="@color/black_333333"
        android:textStyle="bold"
        android:textSize="16dp"
        android:layout_width="match_parent"
        android:text="暂无可用站点"
        android:layout_height="match_parent"/>
 
</LinearLayout>