Android:TextView height doesn’t change after shrinking the font size

So, After a long search I have found a solution.
Every time you set text do:

setText("I am a Text",TextView.BufferType.SPANNABLE);

Or after resizing your text just do:

setText(getText(),TextView.BufferType.SPANNABLE);

Leave a Comment