Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:padding="30dp"
  8.  
  9. android:orientation="vertical">
  10.  
  11. <ImageView
  12. android:layout_width="130dp"
  13. android:layout_height="130dp"
  14. />
  15.  
  16. <TextView
  17. android:id="@+id/name"
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. android:layout_marginLeft="165dp"
  21. android:layout_marginTop="20dp"
  22. android:text="name"
  23. android:textStyle="bold"
  24. android:textSize="20dp"
  25. android:textColor="black"
  26. />
  27.  
  28. <TextView
  29. android:id="@+id/date"
  30. android:layout_width="wrap_content"
  31. android:layout_height="wrap_content"
  32. android:layout_marginLeft="165dp"
  33. android:layout_marginTop="80dp"
  34. android:text="date"
  35. android:textStyle="normal"
  36. android:textSize="20dp"
  37. android:textColor="black"
  38. />
  39.  
  40. <TextView
  41. android:id="@+id/description"
  42. android:layout_width="match_parent"
  43. android:layout_height="match_parent"
  44. android:layout_marginTop="160dp"
  45. android:textColor="black"
  46. android:textSize="15dp"
  47. android:textStyle="normal" />
  48.  
  49.  
  50.  
  51.  
  52.  
  53. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement