altosdroid: Add text size selection
[fw/altos] / altosdroid / app / src / main / res / layout / tab_recover.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
3      Copyright © 2013 Mike Beattie <mike@ethernal.org>
4
5      This program is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published by
7      the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10      This program is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License along
16      with this program; if not, write to the Free Software Foundation, Inc.,
17      59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
18 -->
19 <LinearLayout
20     xmlns:android="http://schemas.android.com/apk/res/android"
21     android:layout_width="fill_parent"
22     android:layout_height="wrap_content"
23     android:orientation="vertical" >
24
25     <TableLayout
26         xmlns:android="http://schemas.android.com/apk/res/android"
27         android:stretchColumns="0,1"
28         android:layout_weight="0"
29         android:layout_width="wrap_content"
30         android:layout_height="wrap_content">
31
32       <TableRow
33           android:layout_gravity="center"
34           android:layout_weight="1"
35           android:padding="2dip"
36           android:layout_width="wrap_content"
37           android:layout_height="wrap_content"
38           >
39
40           <TextView
41               android:id="@+id/bearing_label"
42               android:layout_width="wrap_content"
43               android:layout_height="wrap_content"
44               android:text="@string/bearing_label" />
45
46           <TextView
47               android:id="@+id/bearing_value"
48               android:layout_width="wrap_content"
49               android:layout_height="wrap_content"
50               android:text="" />
51       </TableRow>
52
53       <TableRow
54           android:layout_gravity="center"
55           android:layout_weight="1"
56           android:padding="2dip"
57           android:layout_width="wrap_content"
58           android:layout_height="wrap_content"
59           >
60
61           <TextView
62               android:id="@+id/direction_label"
63               android:layout_width="wrap_content"
64               android:layout_height="wrap_content"
65               android:text="@string/direction_label" />
66
67           <TextView
68               android:id="@+id/direction_value"
69               android:layout_width="wrap_content"
70               android:layout_height="wrap_content"
71               android:text="" />
72       </TableRow>
73
74       <TableRow
75           android:layout_gravity="center"
76           android:layout_weight="1"
77           android:padding="2dip"
78           android:layout_width="wrap_content"
79           android:layout_height="wrap_content"
80           >
81
82           <TextView
83               android:id="@+id/distance_label"
84               android:layout_width="wrap_content"
85               android:layout_height="wrap_content"
86               android:text="@string/distance_label" />
87
88           <TextView
89               android:id="@+id/distance_value"
90               android:layout_width="wrap_content"
91               android:layout_height="wrap_content"
92               android:text="" />
93       </TableRow>
94
95       <TableRow
96           android:layout_gravity="center"
97           android:layout_weight="1"
98           android:padding="2dip"
99           android:layout_width="wrap_content"
100           android:layout_height="wrap_content"
101           >
102
103           <TextView
104               android:id="@+id/target_lat_label"
105               android:layout_width="wrap_content"
106               android:layout_height="wrap_content"
107               android:text="@string/target_latitude_label" />
108
109           <TextView
110               android:id="@+id/target_lat_value"
111               android:layout_width="wrap_content"
112               android:layout_height="wrap_content"
113               android:text="" />
114       </TableRow>
115
116       <TableRow
117           android:layout_gravity="center"
118           android:layout_weight="1"
119           android:padding="2dip"
120           android:layout_width="wrap_content"
121           android:layout_height="wrap_content"
122           >
123
124           <TextView
125               android:id="@+id/target_lon_label"
126               android:layout_width="wrap_content"
127               android:layout_height="wrap_content"
128               android:text="@string/target_longitude_label" />
129
130           <TextView
131               android:id="@+id/target_lon_value"
132               android:layout_width="wrap_content"
133               android:layout_height="wrap_content"
134               android:text="" />
135
136       </TableRow>
137
138       <TableRow
139           android:layout_gravity="center"
140           android:layout_weight="1"
141           android:padding="2dip"
142           android:layout_width="wrap_content"
143           android:layout_height="wrap_content"
144           >
145
146           <TextView
147               android:id="@+id/receiver_lat_label"
148               android:layout_width="wrap_content"
149               android:layout_height="wrap_content"
150               android:text="@string/receiver_latitude_label" />
151
152           <TextView
153               android:id="@+id/receiver_lat_value"
154               android:layout_width="wrap_content"
155               android:layout_height="wrap_content"
156               android:text="" />
157       </TableRow>
158
159       <TableRow
160           android:layout_gravity="center"
161           android:layout_weight="1"
162           android:padding="2dip"
163           android:layout_width="wrap_content"
164           android:layout_height="wrap_content"
165           >
166
167           <TextView
168               android:id="@+id/receiver_lon_label"
169               android:layout_width="wrap_content"
170               android:layout_height="wrap_content"
171               android:text="@string/receiver_longitude_label" />
172
173           <TextView
174               android:id="@+id/receiver_lon_value"
175               android:layout_width="wrap_content"
176               android:layout_height="wrap_content"
177               android:text=""/>
178       </TableRow>
179
180       <TableRow
181           android:layout_gravity="center"
182           android:layout_weight="1"
183           android:padding="2dip"
184           android:layout_width="wrap_content"
185           android:layout_height="wrap_content"
186           >
187
188           <TextView
189               android:id="@+id/max_height_label"
190               android:layout_width="wrap_content"
191               android:layout_height="wrap_content"
192               android:text="@string/max_height_label" />
193
194           <TextView
195               android:id="@+id/max_height_value"
196               android:layout_width="wrap_content"
197               android:layout_height="wrap_content"
198               android:text="" />
199       </TableRow>
200
201       <TableRow
202           android:layout_gravity="center"
203           android:layout_weight="1"
204           android:padding="2dip"
205           android:layout_width="wrap_content"
206           android:layout_height="wrap_content"
207           >
208
209
210           <TextView
211               android:id="@+id/max_speed_label"
212               android:layout_width="wrap_content"
213               android:layout_height="wrap_content"
214               android:text="@string/max_speed_label" />
215
216           <TextView
217               android:id="@+id/max_speed_value"
218               android:layout_width="wrap_content"
219               android:layout_height="wrap_content"
220               android:text="" />
221       </TableRow>
222
223       <TableRow
224           android:layout_gravity="center"
225           android:layout_weight="1"
226           android:padding="2dip"
227           android:layout_width="wrap_content"
228           android:layout_height="wrap_content"
229           >
230
231           <TextView
232               android:id="@+id/max_accel_label"
233               android:layout_width="wrap_content"
234               android:layout_height="wrap_content"
235               android:text="@string/max_accel_label" />
236
237           <TextView
238               android:id="@+id/max_accel_value"
239               android:layout_width="wrap_content"
240               android:layout_height="wrap_content"
241               android:text="" />
242       </TableRow>
243   </TableLayout>
244 </LinearLayout>