| 1234567891011121314151617181920212223242526272829 |
- <?xml version="1.0" encoding="utf-8"?>
- <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:id="@+id/container_root"
- android:background="@color/white_color"
- tools:context="com.usai.redant.raimage.LActivity">
- <ImageView
- android:id="@+id/splashImage"
- android:layout_width="0dp"
- android:layout_height="0dp"
- android:layout_marginBottom="0dp"
- android:layout_marginLeft="0dp"
- android:layout_marginRight="0dp"
- android:layout_marginTop="0dp"
- android:background="@color/clear_color"
- android:scaleType="fitCenter"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintDimensionRatio="h,1:1"
- app:layout_constraintHorizontal_bias="0.5"
- app:layout_constraintLeft_toLeftOf="parent"
- app:layout_constraintRight_toRightOf="parent"
- app:layout_constraintTop_toTopOf="parent"
- app:layout_constraintVertical_bias="0.5"
- app:srcCompat="@drawable/splash" />
- </androidx.constraintlayout.widget.ConstraintLayout>
|