50 lines
1.7 KiB
XML
50 lines
1.7 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/color_A18DFD"
|
|
tools:context="com.prank.sounds.fart.activity.SplAct">
|
|
|
|
<androidx.constraintlayout.utils.widget.ImageFilterView
|
|
android:layout_width="220dp"
|
|
android:layout_height="220dp"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginTop="-20dp"
|
|
android:src="@drawable/splash_imag" />
|
|
|
|
|
|
<com.prank.sounds.fart.tools.MyTextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_above="@id/loading_pb"
|
|
android:layout_marginStart="15dp"
|
|
android:layout_marginTop="200dp"
|
|
android:layout_marginEnd="15dp"
|
|
android:layout_marginBottom="32dp"
|
|
android:gravity="center"
|
|
android:text="@string/welcome"
|
|
android:textColor="@color/text_color1"
|
|
android:textSize="17sp" />
|
|
|
|
|
|
<ProgressBar
|
|
android:id="@+id/loading_pb"
|
|
style="?android:attr/progressBarStyleHorizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="7dp"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginStart="25dp"
|
|
android:layout_marginEnd="25dp"
|
|
android:layout_marginBottom="35dp"
|
|
android:progress="90"
|
|
android:progressDrawable="@drawable/progress_draw_welcome" />
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|