Reputation: 37536
I can change background color, but how can I change the text color of Gridview content?
Upvotes: 1
Views: 6236
Reputation: 679
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().
Upvotes: 5