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