Advertisement
code_hacker

Untitled

Oct 27th, 2011
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.78 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="Enter the phone number of friend"
  11.        />    
  12.     <EditText
  13.        android:id="@+id/txtPhoneNo"  
  14.        android:layout_width="fill_parent"
  15.        android:layout_height="wrap_content"        
  16.        />
  17.  
  18.     <Button
  19.        android:id="@+id/btnSendSMS"  
  20.        android:layout_width="fill_parent"
  21.        android:layout_height="wrap_content"
  22.        android:text="Send request"
  23.        />  
  24.  
  25. </LinearLayout>
  26.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement