How to add a transparent overlay to a selected imageview
?
I have a recyclerview. The user can perform deletion by long pressing the items.
I want to highlight the items
What i did is this-
1) Along with the items i created a View and made it invisible android:visibility="invisible"
.
2) Made it visible if it selected in onBindViewHolder()
viewHolder.overlay.setVisibility(isSelected(i) ? View.VISIBLE : View.INVISIBLE);
what i get is this
what i actually want is this, a transparent overlay
How can i achieve this?