ListView reuses view, as you can see in getView
you get convertView, and you only change color from white to gray. You never restore color back to white. I suggest
if (item.Read()) {
tv.setTextColor(Color.Gray);
} else {
tv.setTextColor(Color.White);
}