1
|
<?xml version="1.0" encoding="utf-8"?>
|
2
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
3
|
android:id="@+id/mainLayout"
|
4
|
android:layout_width="match_parent"
|
5
|
android:layout_height="match_parent"
|
6
|
android:background="@color/light_grey"
|
7
|
android:orientation="vertical">
|
8
|
|
9
|
<LinearLayout
|
10
|
android:id="@+id/upperBar"
|
11
|
android:layout_width="fill_parent"
|
12
|
android:layout_height="100dp"
|
13
|
android:paddingLeft="5dp"
|
14
|
android:paddingRight="5dp"
|
15
|
android:background="@color/grey"
|
16
|
android:orientation="horizontal">
|
17
|
|
18
|
<LinearLayout
|
19
|
android:id="@+id/upperBarLeft"
|
20
|
android:layout_width="0dp"
|
21
|
android:layout_height="match_parent"
|
22
|
android:layout_weight="3.0"
|
23
|
android:gravity="center_vertical|start"
|
24
|
android:background="@color/grey"
|
25
|
android:orientation="vertical">
|
26
|
|
27
|
<TextView
|
28
|
android:id="@+id/purchaseUpperName"
|
29
|
android:layout_width="match_parent"
|
30
|
android:layout_height="wrap_content"
|
31
|
android:paddingStart="5dp"
|
32
|
android:textSize="26sp"
|
33
|
android:singleLine="true"
|
34
|
android:maxLines="1"/>
|
35
|
<TextView
|
36
|
android:id="@+id/purchaseUpperAuthor"
|
37
|
android:layout_width="match_parent"
|
38
|
android:layout_height="wrap_content"
|
39
|
android:paddingStart="5dp"
|
40
|
android:textSize="26sp"
|
41
|
android:singleLine="true"
|
42
|
android:maxLines="1"/>
|
43
|
</LinearLayout>
|
44
|
|
45
|
<ImageView
|
46
|
android:id="@+id/purchaseDifficulty"
|
47
|
android:layout_width="0dp"
|
48
|
android:layout_height="match_parent"
|
49
|
android:layout_weight="1.0"/>
|
50
|
|
51
|
</LinearLayout>
|
52
|
|
53
|
<org.distorted.purchase.PurchaseSurfaceView
|
54
|
android:id="@+id/purchaseSurfaceView"
|
55
|
android:layout_width="match_parent"
|
56
|
android:layout_height="wrap_content"/>
|
57
|
|
58
|
<LinearLayout
|
59
|
android:id="@+id/purchaseLayoutOne"
|
60
|
android:layout_width="fill_parent"
|
61
|
android:layout_height="10dp"
|
62
|
android:paddingLeft="5dp"
|
63
|
android:paddingRight="5dp"
|
64
|
android:background="@color/grey"
|
65
|
android:orientation="horizontal">
|
66
|
|
67
|
<TextView
|
68
|
android:id="@+id/purchaseTextOne"
|
69
|
android:layout_width="0dp"
|
70
|
android:layout_height="match_parent"
|
71
|
android:layout_weight="2.0"
|
72
|
android:gravity="center_vertical|start"
|
73
|
android:paddingStart="5dp"
|
74
|
android:textSize="26sp"
|
75
|
android:singleLine="true"
|
76
|
android:maxLines="1"
|
77
|
android:text="@string/buy_one"/>
|
78
|
|
79
|
<Button
|
80
|
android:id="@+id/purchaseButtonOne"
|
81
|
android:layout_width="0dp"
|
82
|
android:layout_height="match_parent"
|
83
|
android:layout_weight="1.0"
|
84
|
android:gravity="center_vertical|end"
|
85
|
android:paddingStart="5dp"
|
86
|
android:textSize="26sp"
|
87
|
android:singleLine="true"
|
88
|
android:maxLines="1"/>
|
89
|
|
90
|
</LinearLayout>
|
91
|
|
92
|
<LinearLayout
|
93
|
android:id="@+id/purchaseLayoutAll"
|
94
|
android:layout_width="fill_parent"
|
95
|
android:layout_height="10dp"
|
96
|
android:paddingLeft="5dp"
|
97
|
android:paddingRight="5dp"
|
98
|
android:background="@color/grey"
|
99
|
android:orientation="horizontal">
|
100
|
|
101
|
<TextView
|
102
|
android:id="@+id/purchaseTextAll"
|
103
|
android:layout_width="0dp"
|
104
|
android:layout_height="match_parent"
|
105
|
android:layout_weight="2.0"
|
106
|
android:gravity="center_vertical|start"
|
107
|
android:paddingStart="5dp"
|
108
|
android:textSize="26sp"
|
109
|
android:singleLine="true"
|
110
|
android:maxLines="1"
|
111
|
android:text="@string/buy_all"/>
|
112
|
|
113
|
<Button
|
114
|
android:id="@+id/purchaseButtonAll"
|
115
|
android:layout_width="0dp"
|
116
|
android:layout_height="match_parent"
|
117
|
android:layout_weight="1.0"
|
118
|
android:gravity="center_vertical|end"
|
119
|
android:paddingStart="5dp"
|
120
|
android:textSize="26sp"
|
121
|
android:singleLine="true"
|
122
|
android:maxLines="1"/>
|
123
|
</LinearLayout>
|
124
|
|
125
|
<LinearLayout
|
126
|
android:id="@+id/lowerBar"
|
127
|
android:layout_width="match_parent"
|
128
|
android:layout_height="100dp"
|
129
|
android:layout_gravity="end"
|
130
|
android:orientation="horizontal"
|
131
|
android:background="@color/light_grey">
|
132
|
</LinearLayout>
|
133
|
|
134
|
</LinearLayout>
|