In a listview, every item has the same heigth but if every item has a textview it is possible that some item won't fit its text in its textview so how can I resize each item so all text would be readable?
Asked
Active
Viewed 364 times
1 Answers
1
Well, it depends. By default a TextView parameter android:singleLine is false. It means that in case of huge text it will split on several rows. If it's good for you, then do nothing. In other case you can use an autoscale textview from here

Community
- 1
- 1

Roberto Artiles Astelarra
- 1,122
- 7
- 19
-
Your first solution was fine. Thanks! – Learning from masters Feb 21 '12 at 22:31