0

I am not having much success finding how to set the textSize for a ListView in the xml code - do I have to create a style? any suggestions? Ron

Mohsen Kamrani
  • 7,177
  • 5
  • 42
  • 66
ron
  • 5,219
  • 8
  • 39
  • 44

1 Answers1

2

You can't set the textSize for a ListView, because a ListView is only the parent-View.

If you want to change the textSize, you have to change it in the child-Views (Documentation).

A similiar question here on stackoverflow.

Community
  • 1
  • 1
Christoph Haefner
  • 1,093
  • 1
  • 9
  • 25
  • here is a code sample that demonstrates how to code a custom listview row. http://stackoverflow.com/questions/4412449/how-to-highlight-listview-items/4413985#4413985 – mad Dec 26 '10 at 11:09