layout_choosescreen_pop.xml
3.47 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="10dp"
android:paddingRight="11dp">
<TextView
android:id="@+id/choosescreen_pop_tv_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_marginTop="13dp"
android:textSize="15sp"
tools:text="NO.1号厅"/>
<TextView
android:id="@+id/choosescreen_pop_tv_price"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@id/choosescreen_pop_tv_title"
android:layout_marginLeft="12dp"
android:layout_toRightOf="@id/choosescreen_pop_tv_title"
android:textColor="@color/color_tab_text_sel_ff6633"
android:textSize="12sp"
tools:text="¥23"/>
<TextView
android:id="@+id/choosescreen_pop_tv_seats"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@id/choosescreen_pop_tv_title"
android:layout_marginTop="7dp"
android:drawableLeft="@mipmap/seat_label"
android:drawablePadding="5dp"
android:text="123/300"
android:textSize="13sp"/>
<ImageView
android:id="@+id/img_close"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginTop="14dp"
android:src="@mipmap/close_button"/>
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<include layout="@layout/layout_banner_viewpager"/>
<ImageView
android:id="@+id/choosescreen_img_next"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:padding="4dp"
android:src="@mipmap/onlive_chose_seat_right"/>
<ImageView
android:id="@+id/choosescreen_img_last"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:padding="4dp"
android:src="@mipmap/onlive_chose_seat_left"/>
</RelativeLayout>
</LinearLayout>
</ScrollView>