set_undisturbed.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. android:id="@+id/LinearLayout01"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent" >
  5. <RadioGroup
  6. android:id="@+id/RadioGroup01"
  7. android:layout_width="fill_parent"
  8. android:layout_height="wrap_content"
  9. android:orientation="vertical" >
  10. <RadioButton
  11. android:id="@+id/RadioButton01"
  12. android:layout_width="fill_parent"
  13. android:layout_height="wrap_content"
  14. android:text="@string/blcok_sms" >
  15. </RadioButton>
  16. <RadioButton
  17. android:id="@+id/RadioButton02"
  18. android:layout_width="fill_parent"
  19. android:layout_height="wrap_content"
  20. android:text="@string/block_phone" >
  21. </RadioButton>
  22. <RadioButton
  23. android:id="@+id/RadioButton03"
  24. android:layout_width="fill_parent"
  25. android:layout_height="wrap_content"
  26. android:text="@string/block_all" >
  27. </RadioButton>
  28. <RadioButton
  29. android:id="@+id/RadioButton04"
  30. android:layout_width="fill_parent"
  31. android:layout_height="wrap_content"
  32. android:text="@string/close" >
  33. </RadioButton>
  34. </RadioGroup>
  35. </LinearLayout>