I set an Adapter to a ListView:
myListView.setAdapter(new listAdapter(this));
in this adapter, I do some operations and I set an Image to the imageView in each lines of the ListView:
holder.image.setImageDrawable(anImage)
I also have 2 RadioButtons in the project, and what I want to do is changing the image of ONE listView when I check a RadioButton.
My problem: I don't know how "recover" an Image of a line. Does anyone know how I can do it?
Need some help, please.