altos/test: Adjust CRC error rate after FEC fix
[fw/altos] / altosdroid / app / src / main / res / layout / tracker_list.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
3
4  Copyright © 2020 Keith Packard <keithp@keithp.com>
5
6  This program is free software; you can redistribute it and/or modify
7  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation; either version 2 of the License, or
9  (at your option) any later version.
10
11  This program is distributed in the hope that it will be useful, but
12  WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  General Public License for more details.
15
16  You should have received a copy of the GNU General Public License along
17  with this program; if not, write to the Free Software Foundation, Inc.,
18  59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
19
20 -->
21 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
22     android:orientation="vertical"
23     android:layout_width="match_parent"
24     android:layout_height="match_parent"
25     >
26     <ScrollView
27         android:layout_width="match_parent"
28         android:layout_height="match_parent"
29         >
30         <TableLayout
31             xmlns:android="http://schemas.android.com/apk/res/android"
32             android:id="@+id/tracker_list"
33             android:orientation="vertical"
34             android:layout_width="match_parent"
35             android:layout_height="wrap_content"
36             android:stretchColumns="1,2,3,4">
37             <TableRow
38                 android:id="@+id/tracker_row"
39                 android:layout_gravity="center"
40                 android:layout_weight="1"
41                 android:padding="2dip"
42                 android:layout_width="match_parent"
43                 android:layout_height="wrap_content"
44                 >
45                 <RadioButton
46                     android:id="@+id/call_button"
47                     android:layout_width="wrap_content"
48                     android:layout_height="wrap_content"
49                     android:text="@string/callsign_label" />
50                 <RadioButton
51                     android:id="@+id/serial_button"
52                     android:layout_width="wrap_content"
53                     android:layout_height="wrap_content"
54                     android:text="@string/serial_label" />
55                 <RadioButton
56                     android:id="@+id/frequency_button"
57                     android:layout_width="wrap_content"
58                     android:layout_height="wrap_content"
59                     android:text="@string/freq_label" />
60                 <RadioButton
61                     android:id="@+id/age_button"
62                     android:layout_width="wrap_content"
63                     android:layout_height="wrap_content"
64                     android:text="@string/age_label" />
65             </TableRow>
66         </TableLayout>
67     </ScrollView>
68 </LinearLayout>