2025-11-13 08:15:18 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
|
|
|
|
<androidx.cardview.widget.CardView 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="250dp"
|
|
|
|
|
android:layout_height="294dp"
|
|
|
|
|
android:backgroundTint="@color/white"
|
|
|
|
|
android:paddingLeft="24dp"
|
|
|
|
|
android:paddingRight="24dp"
|
|
|
|
|
app:cardCornerRadius="4dp"
|
|
|
|
|
tools:ignore="MissingDefaultResource">
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:padding="16dp"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/tv_message"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:layout_marginBottom="8dp"
|
|
|
|
|
android:ellipsize="end"
|
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
|
android:maxLines="2"
|
|
|
|
|
android:fontFamily="@font/rubik_regular"
|
|
|
|
|
android:text="@string/loading"
|
|
|
|
|
android:textColor="@color/colorTextTitle"
|
|
|
|
|
tools:text="Please remove card!"
|
|
|
|
|
android:textSize="18sp" />
|
|
|
|
|
|
|
|
|
|
<com.airbnb.lottie.LottieAnimationView
|
|
|
|
|
android:id="@+id/lav_thumbUp"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
app:lottie_autoPlay="true"
|
|
|
|
|
app:lottie_fileName="lottie_remove_card.json"
|
|
|
|
|
app:lottie_loop="true" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
2026-02-03 16:01:42 +00:00
|
|
|
</androidx.cardview.widget.CardView>
|