1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/LinearLayout01"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent" >
- <RadioGroup
- android:id="@+id/RadioGroup01"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical" >
- <RadioButton
- android:id="@+id/RadioButton01"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="@string/blcok_sms" >
- </RadioButton>
- <RadioButton
- android:id="@+id/RadioButton02"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="@string/block_phone" >
- </RadioButton>
- <RadioButton
- android:id="@+id/RadioButton03"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="@string/block_all" >
- </RadioButton>
- <RadioButton
- android:id="@+id/RadioButton04"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="@string/close" >
- </RadioButton>
- </RadioGroup>
- </LinearLayout>
|