fairly new Android developer here.
I\'ve come across a strange problem that I\'m not sure how to work around. I\'ve read a lot of problems around here that sound lik
i had the same problem: into the adapter i was changing background color in the getView method but sometimes the listview was "reciclyng" views (getting the wrong background). I solved simply putting "else" to each
if(...){changeBackground}
I added
else {restore default background}
And then it worked smoothly