40 lines
1.4 KiB
XML
40 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout 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:orientation="vertical"
|
|
tools:context=".pageview.WelComeActivity">
|
|
|
|
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginTop="200dp"
|
|
android:src="@mipmap/applock" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginTop="20dp"
|
|
android:text="@string/app_name"
|
|
android:textColor="@color/black"
|
|
android:textSize="20sp" />
|
|
|
|
<ProgressBar
|
|
android:id="@+id/update_progress"
|
|
style="?android:attr/progressBarStyleHorizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="10dp"
|
|
android:layout_marginStart="43dp"
|
|
android:layout_marginTop="70dp"
|
|
android:layout_marginEnd="43dp"
|
|
android:layout_marginBottom="40dp"
|
|
android:progress="30"
|
|
android:progressDrawable="@drawable/progressbar"
|
|
app:layout_constraintBottom_toBottomOf="parent" />
|
|
|
|
</LinearLayout> |