<?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"
    android:layout_width="150dp"
    android:layout_height="190dp"
    android:layout_margin="5dp"
    app:cardCornerRadius="10dp">

    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        >

        <ImageView
            android:id="@+id/image_pic"
            android:layout_width="150dp"
            android:layout_height="190dp"

            android:scaleType="fitXY"
            android:src="@drawable/trak" />

        <ImageView
            android:id="@+id/image_remove"
            android:layout_width="25dp"
            android:layout_height="25dp"
            android:layout_alignParentEnd="true"


            android:padding="3dp"
            android:src="@drawable/ic_close" />

        <TextView
            android:id="@+id/txt_type"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@color/purple_700"
            android:padding="5dp"
            android:text="@string/wallet"
            android:textColor="@color/white" />
    </RelativeLayout>
</androidx.cardview.widget.CardView>
