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?
homeDiffto the default ifhomeDT<= homeBF? – Luksprog Nov 20 '12 at 15:34