/FallingSandpaper/res/layout/main.xml

http://thelements.googlecode.com/ · XML · 68 lines · 57 code · 11 blank · 0 comment · 0 complexity · 62df1b5e186bd588dc9050669685d113 MD5 · raw file

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical"
  4. android:layout_width="fill_parent"
  5. android:layout_height="fill_parent" >
  6. <CheckBox android:id="@+id/flip_screen"
  7. android:layout_width="wrap_content"
  8. android:layout_height="wrap_content"
  9. android:text="Flipped Screen (Tattoo)" />
  10. <CheckBox android:id="@+id/ui_on"
  11. android:layout_width="wrap_content"
  12. android:layout_height="wrap_content"
  13. android:text="UI On/Off" />
  14. <RadioGroup
  15. android:layout_width="fill_parent"
  16. android:layout_height="wrap_content"
  17. android:orientation="vertical">
  18. <RadioButton android:id="@+id/radio_red"
  19. android:layout_width="wrap_content"
  20. android:layout_height="wrap_content"
  21. android:text="White Background" />
  22. <RadioButton android:id="@+id/radio_blue"
  23. android:layout_width="wrap_content"
  24. android:layout_height="wrap_content"
  25. android:text="Black Background" />
  26. </RadioGroup>
  27. <TextView
  28. android:layout_width="wrap_content"
  29. android:layout_height="wrap_content"
  30. android:id="@+id/red_text"
  31. android:text="Red Value:"
  32. android:textColor="#ffffff" />
  33. <SeekBar
  34. android:layout_width="wrap_content"
  35. android:layout_height="wrap_content"
  36. android:id="@+id/slider_red" />
  37. <TextView
  38. android:layout_width="wrap_content"
  39. android:layout_height="wrap_content"
  40. android:id="@+id/blue_text"
  41. android:text="Blue Value:"
  42. android:textColor="#ffffff" />
  43. <SeekBar
  44. android:layout_width="wrap_content"
  45. android:layout_height="wrap_content"
  46. android:id="@+id/slider_blue" />
  47. <TextView
  48. android:layout_width="wrap_content"
  49. android:layout_height="wrap_content"
  50. android:id="@+id/Green_text"
  51. android:text="Green Value:"
  52. android:textColor="#ffffff" />
  53. <SeekBar
  54. android:layout_width="wrap_content"
  55. android:layout_height="wrap_content"
  56. android:id="@+id/slider_green" />
  57. </LinearLayout>