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?

link|improve this question

64% accept rate
please provide your code of dynamically generating textview.i hope,you haven't tried with WRAP_CONTENT as a width of textview. – Hiral Dec 5 '11 at 4:31
The textview that i am saying is in a relative layout.so if the size increases it will go out.Even if i am using WRAP_CONTENT, it looks bad.And one more thing ,the textview is not dynamically generated,the contents are dynamically generated. – yshak Dec 5 '11 at 4:44
But using fixed width textview is bad practice. You must adjust your layout with WRAP_CONTENT as textview width to meet your need.You have to set textview – Hiral Dec 5 '11 at 4:47
Using fixed size component is not a good practice.instead,you should adjust other components with WRAP_CONTENT as textview width in your case.And yes,you should keep the text size in mind for text to be filled into textview and make according textview size from initial time. – Hiral Dec 5 '11 at 4:49
I know that i can use WRAP_CONTENT, and i also know that it will wrap the contents inside that text view. But i want it to scale in that fixed size by auto decrementing the text size according to the length of the data. – yshak Dec 5 '11 at 5:11
feedback

3 Answers

up vote 0 down vote accepted

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.

link|improve this answer
feedback
TextViwe txt = (TextView)findViewById(R.id.txt);
txt.setTextSize(Float.parseFloat(textSize));
link|improve this answer
can you tell me how it works.....? – yshak Dec 5 '11 at 6:05
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.

textView.setSingleLine(false);


or

android:singleLine="false"

and set textView height as WRAP_CONTENT

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.