<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginHorizontal="4dp"
    android:layout_marginBottom="16dp"
    app:cardCornerRadius="@dimen/common_corner_radius"
    app:cardElevation="0dp"
    app:cardBackgroundColor="@android:color/transparent"
    tools:ignore="UseCompoundDrawables">

    <LinearLayout
        android:id="@+id/linearLayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:padding="@dimen/icon_margin"
        android:background="?selectableItemBackground"
        android:orientation="vertical">

        <ImageView
            android:id="@+id/drawable"
            android:layout_width="@dimen/big_icon_size"
            android:layout_height="@dimen/big_icon_size"
            android:layout_marginBottom="@dimen/icon_margin"
            android:contentDescription="@null" />

        <TextView
            android:id="@+id/title"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:ellipsize="end"
            android:gravity="center"
            android:textColor="?android:attr/textColorPrimary"
            android:textIsSelectable="false" />
    </LinearLayout>
</androidx.cardview.widget.CardView>