<?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/write"
|
android:layout_height="wrap_content">
|
|
<TextView
|
android:id="@+id/tv_city_name"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="南宁市"
|
android:layout_marginBottom="10dp"
|
android:drawablePadding="7dp"
|
android:layout_marginStart="14dp"
|
android:textStyle="bold"
|
android:layout_marginTop="9dp"
|
android:drawableStart="@drawable/bg_point_main_color"
|
android:textColor="#ff27282d"
|
android:textSize="14sp"
|
/>
|
|
<androidx.recyclerview.widget.RecyclerView
|
android:layout_width="match_parent"
|
android:layout_marginStart="13dp"
|
android:layout_marginEnd="13dp"
|
android:layout_height="wrap_content"
|
android:id="@+id/recycler_view_point"/>
|
|
<View
|
android:layout_width="match_parent"
|
android:background="#979797"
|
android:alpha="0.3"
|
android:layout_marginStart="26dp"
|
android:layout_height="1px"/>
|
|
|
|
|
|
</LinearLayout>
|