<?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>
|