0

I want to Justify the text into textView. I does not want to use web view. because i can't increase the text size at run time for different screens. So I want To use the text view. I want some things like that.enter image description here

Umesh Kumar Saraswat
  • 758
  • 3
  • 10
  • 28
  • 1
    Possible Duplicate http://stackoverflow.com/questions/1292575/android-textview-justify-text?rq=1 – Submersed Dec 17 '14 at 15:50
  • android doesn't support justification property and you may try http://stackoverflow.com/questions/23366633/how-to-justify-text-of-textview-in-android – Hybrid Developer Dec 17 '14 at 15:53

1 Answers1

0

You can set HTML on a TextView.

So...

String htmlString = "<p align=\"justify\">This is some text in a paragraph.</p>";
mTextView.setText(Html.fromHtml(htmlString));

Good Luck. :)

Hemendra Sharma
  • 1,063
  • 9
  • 21