Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am Using gallery to show images and changing the gallery item's background on LongClick.But when I scroll the gallery, it is coming in original state means its showing the original image instead of the changed image.

I am not able to maintain the gallery item's selected state.

kindly help.

share|improve this question

1 Answer

well, this is a common case when you use recycled view in your adapter. You can save the selected position, then in your getView() method to check if the position equals the selected position, if yes, set the view selected state.

share|improve this answer
thnx handrenliang – Vibhuti Sharma Dec 12 '12 at 5:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.