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"
7 <TextView xmlns:android="http://schemas.android.com/apk/res/android"
9 android:layout_width="fill_parent"
10 android:layout_height="wrap_content"
11 android:text="@string/info"
14 <RadioGroup xmlns:android="http://schemas.android.com/apk/res/android"
15 android:layout_width="wrap_content"
16 android:layout_height="wrap_content"
17 android:orientation="horizontal"
18 android:layout_centerHorizontal="true"
19 android:layout_alignParentBottom="true"
21 <RadioButton android:id="@+id/slot_1"
22 android:layout_width="wrap_content"
23 android:layout_height="wrap_content"
24 android:text="@string/slot_1"
25 android:onClick="onSlotSelectionClicked"
27 <RadioButton android:id="@+id/slot_2"
28 android:layout_width="wrap_content"
29 android:layout_height="wrap_content"
30 android:text="@string/slot_2"
31 android:onClick="onSlotSelectionClicked"