|
|
@@ -0,0 +1,28 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<android.support.constraint.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:background="@color/white_color"
|
|
|
+ tools:context="com.usai.redant.redantmobile.SplashActivity">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/splashImage"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="0dp"
|
|
|
+ android:layout_marginBottom="8dp"
|
|
|
+ android:layout_marginLeft="24dp"
|
|
|
+ android:layout_marginRight="24dp"
|
|
|
+ android:layout_marginTop="8dp"
|
|
|
+ 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" />
|
|
|
+</android.support.constraint.ConstraintLayout>
|