44 lines
1.5 KiB
XML
44 lines
1.5 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"
|
|
tools:context=".ui.WelcomeActivity">
|
|
|
|
|
|
<ProgressBar
|
|
android:id="@+id/nova_progress"
|
|
style="?android:attr/progressBarStyleHorizontal"
|
|
android:layout_width="240dp"
|
|
android:layout_height="5dp"
|
|
android:layout_below="@id/tv"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginStart="33dp"
|
|
android:layout_marginTop="28dp"
|
|
android:layout_marginEnd="33dp"
|
|
android:layout_marginBottom="40dp"
|
|
android:progress="3"
|
|
android:progressDrawable="@drawable/pb_drawable" />
|
|
|
|
<ImageView
|
|
android:id="@+id/image"
|
|
android:layout_width="106dp"
|
|
android:layout_height="106dp"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginTop="260dp"
|
|
android:src="@mipmap/icon" />
|
|
|
|
<com.keyboard.bubble.skin.keyboard.utils.MyTextView
|
|
android:id="@+id/tv"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/image"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginTop="5dp"
|
|
android:text="@string/app_name"
|
|
android:textColor="@color/black"
|
|
android:textSize="21sp"
|
|
app:apply_font="true" />
|
|
|
|
</RelativeLayout> |