Advertisement
Guest User

Untitled

a guest
Feb 13th, 2012
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.23 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2.  
  3.     <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  4.                    android:layout_width="fill_parent"
  5.                    android:layout_height="fill_parent">
  6.    
  7.         <Button android:id="@+id/open"
  8.                   android:layout_height="wrap_content"
  9.                   android:layout_width="wrap_content"
  10.                   android:src="@drawable/play"
  11.                   android:text="Play"
  12.                   android:layout_gravity="fill_vertical"
  13.                />
  14.                
  15.         <CheckBox android:id="@+id/check"
  16.                  android:layout_width="wrap_content"
  17.                  android:layout_height="wrap_content"
  18.                  android:gravity="fill_vertical"
  19.                  android:layout_toRightOf="@id/open"
  20.                />
  21.    
  22.         <TextView android:text="@+id/label"
  23.                  android:layout_width="wrap_content"
  24.                  android:layout_height="wrap_content"
  25.                  android:id="@+id/label"
  26.                  android:textSize="16px"
  27.                  android:gravity="fill_vertical"
  28.                  android:layout_toRightOf="@id/check"
  29.                />
  30.    
  31.     </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement