<?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_number"
|
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">
|
|
<ImageView
|
android:id="@+id/iv_leat_num"
|
android:layout_gravity="center_horizontal"
|
android:layout_marginTop="21dp"
|
android:layout_width="wrap_content"
|
android:src="@mipmap/seat_five"
|
android:layout_height="wrap_content">
|
|
</ImageView>
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_marginTop="10dp"
|
android:textStyle="bold"
|
android:layout_height="wrap_content"
|
android:layout_marginStart="15dp"
|
android:text="选择您的座位:"
|
android:textColor="#ff27282d"
|
android:textSize="14sp"
|
/>
|
|
<androidx.recyclerview.widget.RecyclerView
|
android:id="@+id/recycler_view_people_number"
|
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_number"
|
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>
|