<?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"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <LinearLayout
        android:id="@+id/ll_card_bg"
        android:layout_width="@dimen/dp200"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:background="@drawable/base_dialog_progress_bg"
        android:gravity="center_horizontal"
        android:orientation="vertical"
        android:paddingBottom="@dimen/dp10">

        <com.airbnb.lottie.LottieAnimationView
            android:layout_width="@dimen/dp100"
            android:layout_height="@dimen/dp120"
            app:lottie_autoPlay="true"
            app:lottie_rawRes="@raw/lottie_loading"
            app:lottie_loop="true" />

        <TextView
            android:id="@+id/tv_content"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="@dimen/dp20"
            android:gravity="center"
            android:textColor="@android:color/white"
            android:textSize="@dimen/base_secondaryTextSize" />
    </LinearLayout>


</RelativeLayout>