Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.support.constraint.ConstraintLayout 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. tools:context="com.gharbaouizakaria.myapplication.MainActivity">
  8.  
  9. <TextView
  10. android:id="@+id/cin"
  11. android:layout_width="wrap_content"
  12. android:layout_height="wrap_content"
  13.  
  14. android:layout_marginStart="16dp"
  15. android:layout_marginTop="16dp"
  16.  
  17. android:text="CIN"
  18. app:layout_constraintStart_toStartOf="parent"
  19. app:layout_constraintTop_toTopOf="parent" />
  20.  
  21. <TextView
  22. android:layout_width="wrap_content"
  23. android:layout_height="wrap_content"
  24.  
  25. android:layout_marginTop="8dp"
  26.  
  27.  
  28. android:text="Nom"
  29. app:layout_constraintTop_toBottomOf="@+id/cin"
  30. tools:layout_editor_absoluteX="16dp" />
  31.  
  32. <TextView
  33. android:layout_width="wrap_content"
  34. android:layout_height="wrap_content"
  35.  
  36. android:layout_marginTop="40dp"
  37.  
  38.  
  39. android:text="Prenom"
  40. app:layout_constraintTop_toBottomOf="@+id/cin"
  41. tools:layout_editor_absoluteX="16dp" />
  42.  
  43. <EditText
  44. android:layout_width="116dp"
  45. android:layout_height="18dp"
  46.  
  47.  
  48. tools:layout_editor_absoluteX="75dp"
  49. tools:layout_editor_absoluteY="16dp" />
  50.  
  51. <EditText
  52. android:layout_width="116dp"
  53. android:layout_height="16dp"
  54. tools:layout_editor_absoluteX="75dp"
  55. tools:layout_editor_absoluteY="43dp" />
  56.  
  57. <EditText
  58. android:layout_width="116dp"
  59. android:layout_height="16dp"
  60. tools:layout_editor_absoluteX="75dp"
  61. tools:layout_editor_absoluteY="75dp" />
  62. </android.support.constraint.ConstraintLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement