IT-Academy

XML Android Seekbar

Jul 4th, 2016
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.98 KB | None | 0 0
  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.    android:id="@+id/plocha"
  7.    >
  8. <TextView  
  9.    android:layout_width="fill_parent"
  10.    android:layout_height="wrap_content"
  11.    android:text="@string/hello"
  12.    />
  13. <SeekBar
  14.         android:id="@+id/seekBar_R"
  15.        android:layout_width="fill_parent"
  16.        android:layout_height="wrap_content"
  17.        android:max="255"
  18.        android:progress="0"/>
  19. <SeekBar
  20.         android:id="@+id/seekBar_G"
  21.        android:layout_width="fill_parent"
  22.        android:layout_height="wrap_content"
  23.        android:max="255"
  24.        android:progress="0"/>
  25. <SeekBar
  26.         android:id="@+id/seekBar_B"
  27.        android:layout_width="fill_parent"
  28.        android:layout_height="wrap_content"
  29.        android:max="255"
  30.        android:progress="0"/>
  31.  
  32. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment