Home | History | Annotate | Download | only in layout
      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" android:layout_height="wrap_content"
      4 	android:orientation="horizontal" android:layout_weight="1">
      5 	<TextView android:text="@string/ledLabel" style="@style/DemoKitLEDText"
      6 		android:layout_gravity="left|center_vertical" android:layout_width="40dip" android:clickable="true"/>
      7 	<com.google.android.DemoKit.Slider
      8 		android:layout_height="wrap_content" android:layout_width="wrap_content"
      9 		android:layout_weight="1"></com.google.android.DemoKit.Slider>
     10 	<TextView android:text="155" style="@style/DemoKitLEDText" android:layout_width="40dip"
     11 		android:layout_gravity="center_vertical|right"  android:gravity="right" android:clickable="true"/>
     12 </LinearLayout>
     13 
     14