blob: 51e425d8c75b1b154f618b162359770244ca5419 [file] [log] [blame]
Svetoslav Ganov4b9a4d12013-06-11 15:20:06 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2013 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
17<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
18 android:layout_width="fill_parent"
19 android:layout_height="wrap_content">
20
21 <GridLayout
22 android:layout_width="wrap_content"
23 android:layout_height="wrap_content"
24 android:layout_gravity="center"
25 android:orientation="vertical"
26 android:columnCount="2">
27
28 <EditText
29 android:id="@+id/copies_edittext"
30 android:layout_width="fill_parent"
31 android:layout_height="wrap_content"
32 android:layout_marginLeft="12dip"
33 android:layout_marginRight="12dip"
34 android:layout_row="0"
35 android:layout_column="1"
36 android:minWidth="150dip"
37 android:inputType="number"
38 android:selectAllOnFocus="true">
39 </EditText>
40
41 <TextView
42 android:layout_width="wrap_content"
43 android:layout_height="wrap_content"
44 android:layout_marginLeft="12dip"
45 android:layout_marginRight="12dip"
46 android:layout_row="0"
47 android:layout_column="0"
48 android:text="@string/label_copies"
49 android:textAppearance="?android:attr/textAppearanceMedium"
50 android:labelFor="@id/copies_edittext">
51 </TextView>
52
53 <TextView
54 android:layout_width="wrap_content"
55 android:layout_height="wrap_content"
56 android:layout_marginLeft="12dip"
57 android:layout_marginRight="12dip"
58 android:layout_row="1"
59 android:layout_column="0"
60 android:text="@string/label_destination"
61 android:textAppearance="?android:attr/textAppearanceMedium">
62 </TextView>
63
64 <Spinner
65 android:id="@+id/destination_spinner"
66 android:layout_width="fill_parent"
67 android:layout_height="wrap_content"
68 android:layout_marginLeft="12dip"
69 android:layout_marginRight="12dip"
70 android:layout_row="1"
71 android:layout_column="1"
72 android:minWidth="150dip">
73 </Spinner>
74
75
76 <TextView
77 android:layout_width="wrap_content"
78 android:layout_height="wrap_content"
79 android:layout_marginLeft="12dip"
80 android:layout_marginRight="12dip"
81 android:layout_row="2"
82 android:layout_column="0"
83 android:text="@string/label_media_size"
84 android:textAppearance="?android:attr/textAppearanceMedium">
85 </TextView>
86
87 <Spinner
88 android:id="@+id/media_size_spinner"
89 android:layout_width="fill_parent"
90 android:layout_height="wrap_content"
91 android:layout_marginLeft="12dip"
92 android:layout_marginRight="12dip"
93 android:layout_row="2"
94 android:layout_column="1"
95 android:minWidth="150dip">
96 </Spinner>
97
98
99 <TextView
100 android:layout_width="wrap_content"
101 android:layout_height="wrap_content"
102 android:layout_marginLeft="12dip"
103 android:layout_marginRight="12dip"
104 android:layout_row="3"
105 android:layout_column="0"
106 android:text="@string/label_resolution"
107 android:textAppearance="?android:attr/textAppearanceMedium">
108 </TextView>
109
110 <Spinner
111 android:id="@+id/resolution_spinner"
112 android:layout_width="fill_parent"
113 android:layout_height="wrap_content"
114 android:layout_marginLeft="12dip"
115 android:layout_marginRight="12dip"
116 android:layout_row="3"
117 android:layout_column="1"
118 android:minWidth="150dip">
119 </Spinner>
120
121
122 <TextView
123 android:layout_width="wrap_content"
124 android:layout_height="wrap_content"
125 android:layout_marginLeft="12dip"
126 android:layout_marginRight="12dip"
127 android:layout_row="4"
128 android:layout_column="0"
129 android:text="@string/label_input_tray"
130 android:textAppearance="?android:attr/textAppearanceMedium">
131 </TextView>
132
133 <Spinner
134 android:id="@+id/input_tray_spinner"
135 android:layout_width="fill_parent"
136 android:layout_height="wrap_content"
137 android:layout_marginLeft="12dip"
138 android:layout_marginRight="12dip"
139 android:layout_row="4"
140 android:layout_column="1"
141 android:minWidth="150dip">
142 </Spinner>
143
144
145 <TextView
146 android:layout_width="wrap_content"
147 android:layout_height="wrap_content"
148 android:layout_marginLeft="12dip"
149 android:layout_marginRight="12dip"
150 android:layout_row="5"
151 android:layout_column="0"
152 android:text="@string/label_output_tray"
153 android:textAppearance="?android:attr/textAppearanceMedium">
154 </TextView>
155
156 <Spinner
157 android:id="@+id/output_tray_spinner"
158 android:layout_width="fill_parent"
159 android:layout_height="wrap_content"
160 android:layout_marginLeft="12dip"
161 android:layout_marginRight="12dip"
162 android:layout_row="5"
163 android:layout_column="1"
164 android:minWidth="150dip">
165 </Spinner>
166
167
168 <TextView
169 android:layout_width="wrap_content"
170 android:layout_height="wrap_content"
171 android:layout_marginLeft="12dip"
172 android:layout_marginRight="12dip"
173 android:layout_row="6"
174 android:layout_column="0"
175 android:text="@string/label_duplex_mode"
176 android:textAppearance="?android:attr/textAppearanceMedium">
177 </TextView>
178
179 <Spinner
180 android:id="@+id/duplex_mode_spinner"
181 android:layout_width="fill_parent"
182 android:layout_height="wrap_content"
183 android:layout_marginLeft="12dip"
184 android:layout_marginRight="12dip"
185 android:layout_row="6"
186 android:layout_column="1"
187 android:minWidth="150dip">
188 </Spinner>
189
190
191 <TextView
192 android:layout_width="wrap_content"
193 android:layout_height="wrap_content"
194 android:layout_marginLeft="12dip"
195 android:layout_marginRight="12dip"
196 android:layout_row="7"
197 android:layout_column="0"
198 android:text="@string/label_color_mode"
199 android:textAppearance="?android:attr/textAppearanceMedium">
200 </TextView>
201
202 <Spinner
203 android:id="@+id/color_mode_spinner"
204 android:layout_width="fill_parent"
205 android:layout_height="wrap_content"
206 android:layout_marginLeft="12dip"
207 android:layout_marginRight="12dip"
208 android:layout_row="7"
209 android:layout_column="1"
210 android:minWidth="150dip">
211 </Spinner>
212
213
214 <TextView
215 android:layout_width="wrap_content"
216 android:layout_height="wrap_content"
217 android:layout_marginLeft="12dip"
218 android:layout_marginRight="12dip"
219 android:layout_row="8"
220 android:layout_column="0"
221 android:text="@string/label_fitting_mode"
222 android:textAppearance="?android:attr/textAppearanceMedium">
223 </TextView>
224
225 <Spinner
226 android:id="@+id/fitting_mode_spinner"
227 android:layout_width="fill_parent"
228 android:layout_height="wrap_content"
229 android:layout_marginLeft="12dip"
230 android:layout_marginRight="12dip"
231 android:layout_row="8"
232 android:layout_column="1"
233 android:minWidth="150dip">
234 </Spinner>
235
236
237 <TextView
238 android:layout_width="wrap_content"
239 android:layout_height="wrap_content"
240 android:layout_marginLeft="12dip"
241 android:layout_marginRight="12dip"
242 android:layout_row="9"
243 android:layout_column="0"
244 android:text="@string/label_orientation"
245 android:textAppearance="?android:attr/textAppearanceMedium">
246 </TextView>
247
248 <Spinner
249 android:id="@+id/orientation_spinner"
250 android:layout_width="fill_parent"
251 android:layout_height="wrap_content"
252 android:layout_marginLeft="12dip"
253 android:layout_marginRight="12dip"
254 android:layout_row="9"
255 android:layout_column="1"
256 android:minWidth="150dip">
257 </Spinner>
258
259 </GridLayout>
260
261</ScrollView>