Advertisement
Geeo

nolose

Jan 16th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.64 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. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:orientation="vertical"
  8. tools:context=".MainActivity">
  9.  
  10.  
  11. <RelativeLayout
  12. android:id="@+id/relativeLayout"
  13. android:layout_width="match_parent"
  14. android:layout_height="wrap_content">
  15.  
  16. <ImageView
  17. android:id="@+id/imagen"
  18. android:layout_width="154dp"
  19. android:layout_height="140dp"
  20. android:layout_alignParentEnd="true"
  21. app:srcCompat="@drawable/mbappe"
  22. tools:layout_editor_absoluteY="50dp" />
  23.  
  24.  
  25. <LinearLayout
  26. android:layout_width="match_parent"
  27. android:layout_height="wrap_content"
  28. android:layout_alignTop="@id/imagen"
  29. android:layout_alignBottom="@id/imagen"
  30. android:layout_toStartOf="@id/imagen"
  31. android:orientation="vertical">
  32.  
  33. <EditText
  34. android:id="@+id/editText3"
  35. android:layout_width="wrap_content"
  36. android:layout_height="wrap_content"
  37. android:layout_weight="1"
  38. android:ems="10"
  39. android:inputType="textPersonName"
  40. android:text="Name" />
  41.  
  42. <EditText
  43. android:id="@+id/editText2"
  44. android:layout_width="wrap_content"
  45. android:layout_height="wrap_content"
  46. android:layout_weight="1"
  47. android:ems="10"
  48. android:inputType="textPersonName"
  49. android:text="Name" />
  50. </LinearLayout>
  51. </RelativeLayout>
  52. <ScrollView
  53. android:layout_width="match_parent"
  54. android:layout_height="wrap_content">
  55. <LinearLayout
  56. android:layout_width="match_parent"
  57. android:layout_height="wrap_content"
  58. tools:layout_toStartOf="@+id/relativeLayout"
  59. android:orientation="vertical">
  60.  
  61. <EditText
  62. android:layout_width="match_parent"
  63. android:layout_height="wrap_content" />
  64.  
  65. <EditText
  66. android:layout_width="match_parent"
  67. android:layout_height="wrap_content" />
  68.  
  69. <EditText
  70. android:layout_width="match_parent"
  71. android:layout_height="wrap_content" />
  72. <EditText
  73. android:layout_width="match_parent"
  74. android:layout_height="wrap_content" />
  75. <EditText
  76. android:layout_width="match_parent"
  77. android:layout_height="wrap_content" />
  78. <EditText
  79. android:layout_width="match_parent"
  80. android:layout_height="wrap_content" />
  81. <EditText
  82. android:layout_width="match_parent"
  83. android:layout_height="wrap_content" />
  84. <EditText
  85. android:layout_width="match_parent"
  86. android:layout_height="wrap_content" />
  87. <EditText
  88. android:layout_width="match_parent"
  89. android:layout_height="wrap_content" />
  90. <EditText
  91. android:layout_width="match_parent"
  92. android:layout_height="wrap_content" />
  93. <EditText
  94. android:layout_width="match_parent"
  95. android:layout_height="wrap_content" />
  96. <EditText
  97. android:layout_width="match_parent"
  98. android:layout_height="wrap_content" />
  99.  
  100.  
  101.  
  102. </LinearLayout>
  103. </ScrollView>
  104. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement