Guest User

Untitled

a guest
Apr 20th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. <
  2. ?xml version="1.0" encoding="utf-8"?>
  3. <RelativeLayout
  4. xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
  5. android:layout_height="145dp"
  6. android:background="@color/mainBrown"
  7. android:paddingLeft="20dp"
  8. android:paddingRight="20dp"
  9. android:paddingBottom="20dp"
  10. >
  11. <ImageView
  12. android:layout_width="match_parent"
  13. android:layout_height="132dp"
  14. android:id="@+id/mission_image"
  15. android:scaleType="centerCrop"/>
  16. <TextView
  17. android:layout_width="wrap_content"
  18. android:layout_height="wrap_content"
  19. android:id="@+id/missionTitle"
  20. android:text="Find 5 ATM's"
  21. android:layout_marginLeft="19dp"
  22. android:textColor="@color/white"
  23. android:layout_alignParentBottom="true"
  24. android:layout_marginBottom="29dp"
  25. android:textSize="18sp"/>
  26. <TextView
  27. android:layout_width="wrap_content"
  28. android:layout_height="wrap_content"
  29. android:id="@+id/missionPoints"
  30. android:text="10pt"
  31. android:layout_marginRight="19dp"
  32. android:textColor="@color/white"
  33. android:layout_alignParentBottom="true"
  34. android:layout_alignParentEnd="true"
  35. android:layout_marginBottom="29dp"
  36. android:textSize="18sp"/>
  37. <ImageView
  38. android:layout_width="wrap_content"
  39. android:layout_height="wrap_content"
  40. android:src="@mipmap/ic_coin"
  41. android:layout_toLeftOf="@id/missionPoints"
  42. android:layout_alignParentBottom="true"
  43. android:layout_marginBottom="29dp"
  44. android:layout_marginRight="4dp"
  45. />
  46.  
  47. </RelativeLayout>
Add Comment
Please, Sign In to add comment