Advertisement
Guest User

Untitled

a guest
Dec 15th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent">
  6.  
  7. <TextView
  8. android:text="Tap here to emergency call"
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:id="@+id/textView"
  12. android:textColor="#000000"
  13. android:textAlignment="center"
  14. android:layout_below="@+id/helpBtn"
  15. android:layout_centerHorizontal="true" />
  16.  
  17. <ImageButton
  18. android:id="@+id/helpBtn"
  19. android:layout_width="wrap_content"
  20. android:layout_height="wrap_content"
  21. android:background="@drawable/phn"
  22. android:layout_marginTop="117dp"
  23. android:layout_alignParentTop="true"
  24. android:layout_centerHorizontal="true" />
  25.  
  26. <ImageButton
  27. android:layout_width="wrap_content"
  28. android:layout_height="wrap_content"
  29. android:background="@drawable/help"
  30. android:layout_marginTop="20dp"
  31. android:layout_centerInParent="true"
  32. android:layout_below="@+id/textView"
  33. android:layout_marginBottom="23dp"
  34. android:id="@+id/imageButton" />
  35.  
  36.  
  37. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement