Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?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"
- android:id="@+id/plocha"
- >
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="@string/hello"
- />
- <SeekBar
- android:id="@+id/seekBar_R"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:max="255"
- android:progress="0"/>
- <SeekBar
- android:id="@+id/seekBar_G"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:max="255"
- android:progress="0"/>
- <SeekBar
- android:id="@+id/seekBar_B"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:max="255"
- android:progress="0"/>
- </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment