]> www.average.org Git - YkNeoCR.git/blob - res/layout/main.xml
38060ddb5e4bcea16cbe3d38b560cf79beb08140
[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="fill_parent"
10                 android:layout_height="wrap_content"
11                 android:orientation="horizontal"
12     >
13         <RadioButton android:id="@+id/slot_1"
14                      android:layout_width="wrap_content"
15                      android:layout_height="wrap_content"
16                      android:text="@string/slot_1"
17                      android:onClick="onSlotSelectionClicked"
18         />
19         <RadioButton android:id="@+id/slot_2"
20                      android:layout_width="wrap_content"
21                      android:layout_height="wrap_content"
22                      android:text="@string/slot_2"
23                      android:onClick="onSlotSelectionClicked"
24         />
25     </RadioGroup>
26     <Button
27         android:id="@+id/enroll"
28         android:text="@string/enroll"
29         android:layout_width="wrap_content"
30         android:layout_height="wrap_content"
31         android:layout_alignParentLeft="true"
32         android:layout_alignParentTop="true"
33         android:layout_marginLeft="20dp"
34         android:layout_marginTop="140dp"
35         android:onClick="onEnrollClicked"
36     />
37 </RelativeLayout>
38