23 lines
850 B
XML
23 lines
850 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"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_horizontal"
|
|
android:orientation="vertical">
|
|
|
|
<com.airbnb.lottie.LottieAnimationView
|
|
android:layout_width="240dp"
|
|
android:layout_height="240dp"
|
|
android:scaleType="centerCrop"
|
|
app:lottie_autoPlay="true"
|
|
app:lottie_loop="true"
|
|
app:lottie_rawRes="@raw/guide_up_slide" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="22dp"
|
|
android:textColor="@color/color_white"
|
|
android:text="@string/slide_up_for_more" />
|
|
</LinearLayout> |