46 lines
1.9 KiB
XML
46 lines
1.9 KiB
XML
<?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:background="@color/color_dbdbdb"
|
|
android:layout_height="match_parent">
|
|
|
|
<androidx.constraintlayout.utils.widget.ImageFilterView
|
|
android:id="@+id/image"
|
|
android:layout_width="126dp"
|
|
android:layout_height="126dp"
|
|
android:layout_marginTop="186dp"
|
|
android:src="@mipmap/icon"
|
|
app:roundPercent="0.2"
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
<com.ar.drawing.art.utils.FontTv
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="30dp"
|
|
android:text="@string/app_name"
|
|
android:textColor="@color/black"
|
|
android:textSize="24sp"
|
|
app:apply_font="true"
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@id/image" />
|
|
|
|
<ProgressBar
|
|
android:id="@+id/loading_pb"
|
|
style="?android:attr/progressBarStyleHorizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="9dp"
|
|
android:layout_marginStart="25dp"
|
|
android:layout_marginEnd="25dp"
|
|
android:layout_marginBottom="60dp"
|
|
android:progress="1"
|
|
android:progressDrawable="@drawable/welcome_pb"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
app:layout_constraintRight_toRightOf="parent" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |