47 lines
1.6 KiB
XML
47 lines
1.6 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:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/white"
|
|
tools:context=".uiview.StartActivity">
|
|
|
|
|
|
<androidx.constraintlayout.utils.widget.ImageFilterView
|
|
android:id="@+id/imageview_logo"
|
|
android:layout_width="94dp"
|
|
android:layout_height="94dp"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginTop="260dp"
|
|
android:src="@mipmap/ic_logo"
|
|
app:roundPercent="0.2" />
|
|
|
|
<com.newapp.paperwall.tools.CustTxtView
|
|
android:id="@+id/textview_appname"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/imageview_logo"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginTop="19dp"
|
|
android:text="@string/app_name"
|
|
android:textColor="#ff617b"
|
|
android:textSize="22sp"
|
|
app:apply_font="true" />
|
|
|
|
|
|
<ProgressBar
|
|
android:id="@+id/progressbar"
|
|
style="?android:attr/progressBarStyleSmall"
|
|
android:layout_width="50dp"
|
|
android:layout_height="50dp"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginBottom="140dp"
|
|
android:max="100"
|
|
android:progress="80"
|
|
android:indeterminateTint="#FFB6C1"
|
|
android:progressDrawable="@drawable/welcome_pb" />
|
|
|
|
|
|
</RelativeLayout> |