layout_detail_private_chat_select.xml
1.68 KB
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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layout_private_chat_select"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:visibility="invisible">
<RelativeLayout
android:id="@+id/seat_users"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/color_383643">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/chooseseat_layout_top_indicator"
android:orientation="vertical">
<com.cnlive.goldenline.ui.widget.selectionview.view.SeatSelectionView
android:id="@+id/chooseseat_selection_view"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:clickable="true" />
</LinearLayout>
</RelativeLayout>
<RadioGroup
android:id="@+id/partition_group"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true" />
<ImageView
android:id="@+id/back_private_chat"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_marginBottom="19dp"
android:layout_marginRight="10dp"
android:src="@mipmap/private_chat_back_button" />
</RelativeLayout>