1

I can change background color, but how can I change the text color of Gridview content?

David
  • 37,109
  • 32
  • 120
  • 141

1 Answers1

5

GridView is just a layout control. You want to change the color of the component that you are putting inside of the GridView - probably a TextView. Try TextView.setTextColor().

Peter
  • 669
  • 5
  • 14