Reputation: 1311
I got a listview with images and some info overlaying them. I want to make so, that when I tap an image info fades out from ALL OF THE LISTVIEW. then I can scroll images and tap on them for this info. how is it possible to do so?
Upvotes: 0
Views: 128
Reputation: 11807
Try to implement an onClickListener
for the image view. When you tap on an image the listener will be called and you can change the view state of the info.
Upvotes: 1