1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?xml version="1.0" encoding="utf-8"?>
- <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- xmlns:app="http://schemas.android.com/apk/res-auto">
- <androidx.constraintlayout.widget.ConstraintLayout
- android:id="@+id/clRoot"
- app:layout_constraintTop_toTopOf="parent"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <ImageView
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintTop_toTopOf="parent"
- android:background="@mipmap/bg_update"
- app:layout_constraintBottom_toBottomOf="parent"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"/>
- <com.swago.baseswago.cusview.BoldTextView
- android:id="@+id/tv"
- android:textSize="16dp"
- android:textColor="#131B23"
- android:text="Version update"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintTop_toTopOf="parent"
- android:layout_marginTop="138dp"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"/>
- <com.swago.baseswago.cusview.RegularTextView
- android:id="@+id/tvDescribe"
- app:layout_constraintStart_toStartOf="@+id/tv"
- android:layout_marginStart="20dp"
- android:layout_marginEnd="20dp"
- android:textSize="14dp"
- app:layout_constraintTop_toBottomOf="@+id/tv"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"/>
- </androidx.constraintlayout.widget.ConstraintLayout>
- </androidx.constraintlayout.widget.ConstraintLayout>
|