Advertisement
Guest User

Untitled

a guest
Aug 3rd, 2012
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.93 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="fill_parent"
  4.    android:layout_height="fill_parent"
  5.    android:orientation="vertical" >
  6.  
  7.     <TextView
  8.        android:layout_width="fill_parent"
  9.        android:layout_height="wrap_content"
  10.        android:text="@string/hello" />
  11.  
  12.     <Button
  13.        android:id="@+id/button1"
  14.        android:layout_width="fill_parent"
  15.        android:layout_height="wrap_content"
  16.        android:text="Connect" />
  17.  
  18.  
  19.     <Button
  20.        android:id="@+id/button3"
  21.        android:layout_width="fill_parent"
  22.        android:layout_height="wrap_content"
  23.        android:text="Die" />
  24.  
  25.  
  26.  
  27.     <Button
  28.        android:id="@+id/button2"
  29.        android:layout_width="fill_parent"
  30.        android:layout_height="wrap_content"
  31.        android:layout_weight="1"
  32.        android:text="Send" />
  33.  
  34. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement