Guest User

Untitled

a guest
Feb 25th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:paddingLeft="16dp"
  7. android:paddingRight="16dp"
  8. android:orientation="vertical"
  9. android:weightSum="2" >
  10.  
  11. <LinearLayout
  12. android:layout_width="match_parent"
  13. android:layout_height="wrap_content"
  14. android:orientation="vertical"
  15. >
  16.  
  17. <ImageView
  18. android:id="@+id/imageView"
  19. android:layout_width="match_parent"
  20. android:layout_height="500dp"
  21. android:scaleType="centerCrop"
  22. app:srcCompat="@drawable/martin" />
  23. </LinearLayout>
  24. <LinearLayout
  25. android:layout_width="match_parent"
  26. android:layout_height="match_parent"
  27. android:orientation="horizontal"
  28. >
  29.  
  30. <TextView
  31. android:text="Martin garrix"
  32. android:layout_width="wrap_content"
  33. android:layout_height="wrap_content"
  34. android:layout_weight="1"
  35. />
  36.  
  37. <TextView
  38. android:text="Beleive"
  39.  
  40. android:layout_width="wrap_content"
  41. android:layout_height="wrap_content"
  42. android:layout_weight="1"
  43. />
  44.  
  45. <TextView
  46. android:id="@+id/textView2"
  47. android:layout_width="0dp"
  48. android:layout_height="wrap_content"
  49. android:layout_weight="1"
  50. android:text="Imagine!!" />
  51. </LinearLayout>
  52. </LinearLayout>
Add Comment
Please, Sign In to add comment