How to set a background drawable on a clicked GridView item in Android?
I have a GridView with a bunch of icons and I need to select one. And by select I mean: I need the drawable id to store into a database (so I can access it later) I need to draw some kind of visual cue on the grid to let the user know which icon is currently selected I found this: http://groups.google.com/group/android-developers/browse_thread/thread/f08a58167dbaa8c8 So I guess setSelection is out of the picture and I can't use it to select the icon itself nor draw the visual cue. I know the grid item position in the onItemClickListener and I can save it as a private class variable. My biggest