Advertisement
Guest User

Untitled

a guest
Nov 17th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 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="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical">
  6.  
  7. <Button
  8. android:id="@+id/btn_appointment"
  9. android:layout_width="140dp"
  10. android:layout_height="50dp"
  11. android:layout_marginLeft="120dp"
  12. android:layout_marginTop="100dp"
  13.  
  14. android:text="Appointment"
  15.  
  16. />
  17.  
  18. <Button
  19. android:layout_width="140dp"
  20. android:layout_height="50dp"
  21. android:layout_marginLeft="120dp"
  22. android:layout_marginTop="10dp"
  23.  
  24. android:text="Need Doctor"
  25. android:id="@+id/btn_need_doctor"/>
  26. <Button
  27. android:layout_width="140dp"
  28. android:layout_height="50dp"
  29. android:layout_marginLeft="120dp"
  30.  
  31. android:text="Need Admin"
  32. android:id="@+id/btn_need_admin"/>
  33. <Button
  34. android:layout_width="140dp"
  35. android:layout_height="50dp"
  36. android:layout_marginLeft="120dp"
  37. android:layout_marginTop="10dp"
  38.  
  39. android:text="Nearest Hospital"
  40. android:id="@+id/btn_hospital"/>
  41.  
  42. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement