Advertisement
Guest User

Untitled

a guest
Jan 28th, 2020
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.89 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.support.constraint.ConstraintLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. xmlns:app="http://schemas.android.com/apk/res-auto">
  7.  
  8. <com.airbnb.lottie.LottieAnimationView
  9. android:id="@+id/pageAnimation"
  10. android:layout_width="match_parent"
  11. android:layout_height="400dp"
  12. app:layout_constraintStart_toStartOf="parent"
  13. app:layout_constraintTop_toTopOf="parent"/>
  14.  
  15. <TextView
  16. android:id="@+id/pageTitle"
  17. android:layout_width="0dp"
  18. android:layout_height="wrap_content"
  19. android:layout_marginStart="16dp"
  20. android:layout_marginEnd="16dp"
  21. android:text="Measuring and sketching"
  22. android:textColor="@color/blue"
  23. android:textStyle="bold"
  24. android:textSize="42sp"
  25. app:layout_constraintStart_toStartOf="parent"
  26. app:layout_constraintEnd_toEndOf="@id/pageAnimation"
  27. app:layout_constraintTop_toBottomOf="@id/pageAnimation" />
  28.  
  29. <TextView
  30. android:id="@+id/pageDescription"
  31. android:layout_width="0dp"
  32. android:layout_height="wrap_content"
  33. android:layout_marginStart="16dp"
  34. android:layout_marginEnd="16dp"
  35. android:layout_marginTop="16dp"
  36. android:text="Create and share interior plans in 2D and 3D. Measure in AR or connect a laser disto."
  37. android:textColor="@color/black"
  38. android:textSize="18sp"
  39. app:layout_constraintStart_toStartOf="parent"
  40. app:layout_constraintEnd_toEndOf="parent"
  41. app:layout_constraintTop_toBottomOf="@id/pageTitle"/>
  42.  
  43. </android.support.constraint.ConstraintLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement