I found that I can add a image by using android:drawableRight
then how can I make image as clickable in textview?
<TextView
android:id="@+id/tv_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ellipsize="end"
android:maxLines="1"
android:padding="5dp"
android:text="title"
android:drawableRight="@drawable/ic_baseline_delete_24"
android:drawablePadding="5dp"
android:clickable="true"
android:textSize="18sp" />