22 lines
757 B
XML
22 lines
757 B
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:orientation="vertical"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
>
|
|
|
|
<com.airbnb.lottie.LottieAnimationView
|
|
android:id="@+id/progressBar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center"
|
|
android:scaleType="centerInside"
|
|
android:layout_weight="4"
|
|
app:lottie_autoPlay="true"
|
|
app:lottie_loop="true"
|
|
app:lottie_rawRes="@raw/splashscreen"
|
|
/>
|
|
</LinearLayout>
|
|
|