]> www.average.org Git - YkNeoCR.git/blob - res/layout/main.xml
611341f7ca121cb1805048953daab23eb55a10d6
[YkNeoCR.git] / res / layout / main.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3     xmlns:tools="http://schemas.android.com/tools"
4     android:layout_width="fill_parent"
5     android:layout_height="fill_parent"
6     tools:context=".NFCAuthCREnroll"
7     >
8     <RadioGroup xmlns:android="http://schemas.android.com/apk/res/android"
9                 android:layout_width="wrap_content"
10                 android:layout_height="wrap_content"
11                 android:orientation="horizontal"
12                 android:layout_centerHorizontal="true"
13                 android:layout_alignParentTop="true"
14     >
15         <RadioButton android:id="@+id/slot_1"
16                      android:layout_width="wrap_content"
17                      android:layout_height="wrap_content"
18                      android:text="@string/slot_1"
19                      android:onClick="onSlotSelectionClicked"
20         />
21         <RadioButton android:id="@+id/slot_2"
22                      android:layout_width="wrap_content"
23                      android:layout_height="wrap_content"
24                      android:text="@string/slot_2"
25                      android:onClick="onSlotSelectionClicked"
26         />
27     </RadioGroup>
28     <Button
29         android:id="@+id/enroll"
30         android:text="@string/enroll"
31         android:layout_width="wrap_content"
32         android:layout_height="wrap_content"
33         android:layout_centerInParent="true"
34         android:onClick="onEnrollClicked"
35     />
36 </RelativeLayout>
37