/FallingSandpaper/res/layout/main.xml
http://thelements.googlecode.com/ · XML · 68 lines · 57 code · 11 blank · 0 comment · 0 complexity · 62df1b5e186bd588dc9050669685d113 MD5 · raw file
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent" >
- <CheckBox android:id="@+id/flip_screen"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="Flipped Screen (Tattoo)" />
-
- <CheckBox android:id="@+id/ui_on"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="UI On/Off" />
-
- <RadioGroup
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
-
- <RadioButton android:id="@+id/radio_red"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="White Background" />
-
- <RadioButton android:id="@+id/radio_blue"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="Black Background" />
-
- </RadioGroup>
-
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:id="@+id/red_text"
- android:text="Red Value:"
- android:textColor="#ffffff" />
- <SeekBar
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:id="@+id/slider_red" />
-
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:id="@+id/blue_text"
- android:text="Blue Value:"
- android:textColor="#ffffff" />
- <SeekBar
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:id="@+id/slider_blue" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:id="@+id/Green_text"
- android:text="Green Value:"
- android:textColor="#ffffff" />
- <SeekBar
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:id="@+id/slider_green" />
-
-
- </LinearLayout>