Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.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. android:layout_marginTop="90dp">
  8.  
  9. <Button
  10. android:id="@+id/button"
  11. android:layout_width="246dp"
  12. android:layout_height="65dp"
  13. android:text="@string/button"
  14. app:layout_constraintBottom_toBottomOf="parent"
  15. app:layout_constraintEnd_toEndOf="parent"
  16. app:layout_constraintHorizontal_bias="0.498"
  17. app:layout_constraintStart_toStartOf="parent"
  18. app:layout_constraintTop_toTopOf="parent"
  19. app:layout_constraintVertical_bias="0.626" />
  20.  
  21. <ImageView
  22. android:id="@+id/imageView"
  23. android:layout_width="299dp"
  24. android:layout_height="302dp"
  25. app:layout_constraintEnd_toEndOf="parent"
  26. app:layout_constraintStart_toStartOf="parent"
  27. app:srcCompat="@mipmap/ic_launcher"
  28. tools:layout_editor_absoluteY="30dp"
  29. tools:ignore="ContentDescription,MissingConstraints" />
  30.  
  31. <TextView
  32. android:id="@+id/textView"
  33. android:layout_width="322dp"
  34. android:layout_height="132dp"
  35. android:text="@string/lorem_ipsum"
  36. app:layout_constraintEnd_toEndOf="parent"
  37. app:layout_constraintStart_toStartOf="parent"
  38. tools:layout_editor_absoluteY="471dp"
  39. tools:ignore="MissingConstraints" />
  40. </androidx.constraintlayout.widget.ConstraintLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement