Advertisement
kernel_memory_dump

zvonko

May 13th, 2014
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.99 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:layout_width="match_parent"
  4.    android:layout_height="match_parent"
  5.    android:orientation="vertical" >
  6.  
  7.     <RelativeLayout
  8.        android:id="@+id/relativeLayout1"
  9.        android:layout_width="match_parent"
  10.        android:layout_height="59dp"
  11.        android:layout_weight="1" >
  12.  
  13.         <SeekBar
  14.            android:id="@+id/seek_bar1_brightness"
  15.            android:layout_width="250dip"
  16.            android:layout_height="wrap_content"
  17.            android:layout_alignParentBottom="true"
  18.            android:layout_centerHorizontal="true"
  19.            android:layout_marginLeft="30dp"
  20.            android:layout_marginRight="30dp" >
  21.         </SeekBar>
  22.  
  23.         <TextView
  24.            android:id="@+id/textView1"
  25.            android:layout_width="wrap_content"
  26.            android:layout_height="wrap_content"
  27.            android:layout_above="@+id/seek_bar1_brightness"
  28.            android:layout_alignLeft="@+id/seek_bar1_brightness"
  29.            android:layout_marginLeft="82dp"
  30.            android:text="@string/zvonko_textView1" >
  31.         </TextView>
  32.  
  33.         <RelativeLayout
  34.            android:id="@+id/relativeLayout3"
  35.            android:layout_width="match_parent"
  36.            android:layout_height="59dp"
  37.            android:layout_above="@+id/textView1"
  38.            android:layout_alignParentLeft="true" >
  39.  
  40.             <SeekBar
  41.                android:id="@+id/seek_bar3_temperature"
  42.                android:layout_width="250dip"
  43.                android:layout_height="wrap_content"
  44.                android:layout_alignParentBottom="true"
  45.                android:layout_centerHorizontal="true"
  46.                android:layout_marginLeft="30dp"
  47.                android:layout_marginRight="30dp" />
  48.  
  49.             <TextView
  50.                android:id="@+id/textView3"
  51.                android:layout_width="wrap_content"
  52.                android:layout_height="wrap_content"
  53.                android:layout_above="@+id/seek_bar3_temperature"
  54.                android:layout_alignLeft="@+id/seek_bar3_temperature"
  55.                android:layout_marginLeft="82dp"
  56.                android:text="@string/zvonko_textView3" />
  57.         </RelativeLayout>
  58.     </RelativeLayout>
  59.  
  60.     <RelativeLayout
  61.        android:id="@+id/relativeLayout2"
  62.        android:layout_width="match_parent"
  63.        android:layout_height="59dp"
  64.        android:layout_weight="1" >
  65.  
  66.         <TextView
  67.            android:id="@+id/textView2"
  68.            android:layout_width="wrap_content"
  69.            android:layout_height="wrap_content"
  70.            android:layout_above="@+id/seek_bar2_contrast"
  71.            android:layout_alignLeft="@+id/seek_bar2_contrast"
  72.            android:layout_marginLeft="82dp"
  73.            android:text="@string/zvonko_textView2" >
  74.         </TextView>
  75.  
  76.         <SeekBar
  77.            android:id="@+id/seek_bar2_contrast"
  78.            android:layout_width="250dip"
  79.            android:layout_height="wrap_content"
  80.            android:layout_centerHorizontal="true"
  81.            android:layout_centerVertical="true" />
  82.  
  83.         <SeekBar
  84.            android:id="@+id/seek_bar4_saturation"
  85.            android:layout_width="250dip"
  86.            android:layout_height="wrap_content"
  87.            android:layout_alignLeft="@+id/seek_bar2_contrast"
  88.            android:layout_alignParentBottom="true" />
  89.  
  90.         <TextView
  91.            android:id="@+id/textView4"
  92.            android:layout_width="wrap_content"
  93.            android:layout_height="wrap_content"
  94.            android:layout_above="@+id/seek_bar4_saturation"
  95.            android:layout_centerHorizontal="true"
  96.            android:text="@string/zvonko_textView4" />
  97.  
  98.     </RelativeLayout>
  99.  
  100.     <RelativeLayout
  101.        android:id="@+id/relativeLayout4"
  102.        android:layout_width="match_parent"
  103.        android:layout_height="59dp"
  104.        android:layout_weight="1" >
  105.     </RelativeLayout>
  106.  
  107. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement