I am using a textview to display a text which I am fetching dynamically. But the problem is that the size of the fetched data may vary from 10 to 30 characters. But I am using a textview with a fixed width. I can't do anything on that. Is there any way to reduce the textsize or something dynamically in order to fit it to the fixed size textview?
feedback
|
|
Check this answer, How to dynamically set textview height android It gives you idea of how to set height of textview as per number of lines of text. | |||
|
feedback
|
| |||
|
feedback
|
|
I think reducing text size according to length of the data is a bad practice. So one solution is you can move text into next line by following code.
and set textView height as WRAP_CONTENT | |||
|
feedback
|