in my application I have a lit view. each row includes thumbnail image in left and some text in right.
I can get image from server and inflate rows. everything about the list correct. it is like this image:

when user click on rows video will play. I need to add video sign to image simething like:

on top of each image. Is it possible to add this image on top of my imageview?
Thank you for your helping
Say, your play icon is transparent, then use overlay technique to draw this play icon on your imageview image. Just use the following function:
Pass image of your corresponding imageview and another image(for ex: play icon), it returns a merged image which you can set to your imageview. You can also extend ImageView class and override onDraw method to accomplish it.