I'm using a GridView following this tutorial.
In my app, each image in the grid acts as a button that takes the user to another screen. That's all fine and dandy.
What I'm having trouble with is finding some way to darken the image once a user clicks down, and then lighten it again when the user releases it. onItemClickListener doesn't have an onItemDownClick function built in. What would be the best/most pain free way to create this functionality, or a similar function?
StateListDrawablein the docs (also commonly named 'selector' because of the related xml tag). You'll want to set on theGridViewusing theandroid:listSelectorattribute, orsetSelector(int)in code. – MH. Jan 12 at 4:47