49 lines
1.9 KiB
XML
49 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout 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:id="@+id/main"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/white"
|
|
tools:context=".preview.ComeInActivity">
|
|
<ImageView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:src="@mipmap/bg_pix"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
android:scaleType="fitXY"/>
|
|
<androidx.constraintlayout.utils.widget.ImageFilterView
|
|
android:id="@+id/imageview_logo"
|
|
android:layout_width="100dp"
|
|
android:layout_height="100dp"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginTop="260dp"
|
|
android:src="@mipmap/ic_launcher_round"
|
|
app:roundPercent="0.2" />
|
|
<TextView
|
|
android:id="@+id/tvLogo"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/imageview_logo"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginTop="20dp"
|
|
android:text="@string/app_name"
|
|
android:textColor="@color/text_tint"
|
|
android:textStyle="bold"
|
|
android:textSize="28sp"/>
|
|
<ProgressBar
|
|
android:id="@+id/progressbar"
|
|
style="?android:attr/progressBarStyleHorizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="8dp"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_below="@+id/tvLogo"
|
|
android:layout_marginHorizontal="50dp"
|
|
android:max="100"
|
|
android:layout_marginTop="30dp"
|
|
android:progress="80"
|
|
android:indeterminateTint="@color/white"
|
|
android:progressDrawable="@drawable/progress_bar_grey_bg" />
|
|
|
|
</RelativeLayout> |