Advertisement
Guest User

Untitled

a guest
Apr 26th, 2012
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 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. android:background="#5927E5">
  7.  
  8.  
  9. <EditText
  10. android:id="@+id/etNum"
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. android:inputType="number"
  14. android:hint="@string/dptnum" />
  15.  
  16. <EditText
  17. android:id="@+id/etName"
  18. android:layout_width="match_parent"
  19. android:layout_height="wrap_content"
  20. android:ems="10"
  21. android:inputType="text"
  22. android:hint="@string/dptname" />
  23.  
  24. <requestFocus />
  25.  
  26.  
  27. <Button
  28. android:id="@+id/btnSearch"
  29. android:layout_width="fill_parent"
  30. android:layout_height="70dp"
  31. android:text="@string/Search" />
  32.  
  33. <TextView
  34. android:id="@+id/tvDisplay"
  35. android:layout_width="match_parent"
  36. android:layout_height="127dp"
  37. android:textColor="#FF0000"/>
  38.  
  39. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement