<?xml version="1.0" encoding="utf-8"?>
|
<RelativeLayout
|
xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
|
<View
|
android:id="@+id/view_top"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_above="@+id/ll_main_top"/>
|
|
<LinearLayout
|
android:id="@+id/ll_main_top"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical"
|
android:layout_marginBottom="20dp"
|
android:layout_marginStart="14dp"
|
android:layout_marginEnd="14dp"
|
android:background="@drawable/write_back_radio_15"
|
android:layout_alignParentBottom="true">
|
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:gravity="center_horizontal"
|
android:paddingTop="18dp"
|
android:text="选择出行人数"
|
android:textStyle="bold"
|
android:textColor="#ff000000"
|
android:textSize="16sp"
|
/>
|
|
<androidx.recyclerview.widget.RecyclerView
|
android:id="@+id/recycler_view_people_num"
|
android:layout_width="match_parent"
|
android:layout_marginTop="10dp"
|
android:layout_marginBottom="10dp"
|
android:layout_height="wrap_content"/>
|
|
<TextView
|
android:id="@+id/tv_pop_sure_people_num"
|
android:layout_width="match_parent"
|
android:layout_height="40dp"
|
android:layout_marginStart="40dp"
|
android:layout_marginEnd="40dp"
|
android:layout_marginBottom="12dp"
|
android:background="@drawable/main_color_eight"
|
android:gravity="center"
|
android:text="确认"
|
android:textColor="@color/write"
|
android:textSize="14sp"
|
/>
|
|
</LinearLayout>
|
|
</RelativeLayout>
|