2

I am trying to style my ListView so that the Item Text Color is Black. I have tried to put android:textColor="#000000" and it is still not working. The background is White which is what I want.

How would I make the ListView Item Text Color Black via XML or Programatically?

DEFALT
  • 149
  • 10

1 Answers1

0

Try this code in your custom adapter.

TextView text = new TextView(context);
text.setTextColor(Color.parseColor("any hex value of a color"));
Jai Khambhayta
  • 4,198
  • 2
  • 22
  • 29