dialog_update.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. xmlns:app="http://schemas.android.com/apk/res-auto">
  6. <androidx.constraintlayout.widget.ConstraintLayout
  7. android:id="@+id/clRoot"
  8. app:layout_constraintTop_toTopOf="parent"
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content">
  11. <ImageView
  12. app:layout_constraintStart_toStartOf="parent"
  13. app:layout_constraintEnd_toEndOf="parent"
  14. app:layout_constraintTop_toTopOf="parent"
  15. android:background="@mipmap/bg_update"
  16. app:layout_constraintBottom_toBottomOf="parent"
  17. android:layout_width="wrap_content"
  18. android:layout_height="wrap_content"/>
  19. <com.swago.baseswago.cusview.BoldTextView
  20. android:id="@+id/tv"
  21. android:textSize="16dp"
  22. android:textColor="#131B23"
  23. android:text="Version update"
  24. app:layout_constraintStart_toStartOf="parent"
  25. app:layout_constraintEnd_toEndOf="parent"
  26. app:layout_constraintTop_toTopOf="parent"
  27. android:layout_marginTop="138dp"
  28. android:layout_width="wrap_content"
  29. android:layout_height="wrap_content"/>
  30. <com.swago.baseswago.cusview.RegularTextView
  31. android:id="@+id/tvDescribe"
  32. app:layout_constraintStart_toStartOf="@+id/tv"
  33. android:layout_marginStart="20dp"
  34. android:layout_marginEnd="20dp"
  35. android:textSize="14dp"
  36. app:layout_constraintTop_toBottomOf="@+id/tv"
  37. android:layout_width="wrap_content"
  38. android:layout_height="wrap_content"/>
  39. </androidx.constraintlayout.widget.ConstraintLayout>
  40. </androidx.constraintlayout.widget.ConstraintLayout>