set_undisturbed.xml 1.0 KB

123456789101112131415161718192021222324
  1. <LinearLayout
  2. android:id="@+id/LinearLayout01"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. xmlns:android="http://schemas.android.com/apk/res/android">
  6. <RadioGroup android:id="@+id/RadioGroup01"
  7. android:orientation="vertical"
  8. android:layout_width="fill_parent"
  9. android:layout_height="wrap_content">
  10. <RadioButton android:id="@+id/RadioButton01"
  11. android:layout_width="fill_parent"
  12. android:layout_height="wrap_content" android:text="拦截短信"></RadioButton>
  13. <RadioButton
  14. android:id="@+id/RadioButton02"
  15. android:layout_width="fill_parent"
  16. android:layout_height="wrap_content" android:text="拦截电话"></RadioButton>
  17. <RadioButton android:id="@+id/RadioButton03"
  18. android:layout_width="fill_parent"
  19. android:layout_height="wrap_content" android:text="拦截短信和电话"></RadioButton>
  20. <RadioButton android:id="@+id/RadioButton04"
  21. android:layout_width="fill_parent"
  22. android:layout_height="wrap_content" android:text="关闭"></RadioButton>
  23. </RadioGroup>
  24. </LinearLayout>