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

I have a custom ListAdapter for displaying a series of numbers. Within the getView() method I attempt to set the background colour of a TextView based on the difference between two numbers:

if (Double.compare(homeDT, homeBF) > 0) {
homeDiff.setBackgroundResource(color.holo_blue_light);
}

This should set the TextView background to light blue if homeBF > homeDT, only sometimes it makes the background light blue when homeBF < homeDT. It appears to happen randomly to one or two child views within the ListView.

Any ideas why this is happening?

share|improve this question
2  
Did you take in consideration the recycling of the row views? Do you revert the background of the homeDiff to the default if homeDT<= homeBF? – Luksprog Nov 20 '12 at 15:34
1  
probably related to listview row recycling. add an else clause to set the bg back to its original value – njzk2 Nov 20 '12 at 15:35
Thanks guys, I didn't consider the view recycling. A simple else clause solved the problem! – DrJimbo Nov 20 '12 at 15:43

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.