-1

I am new to android development.

Text Align Problems :

  • I am able to center, left or right align the text.

How can I justify text in android?

sudhishkr
  • 3,318
  • 5
  • 33
  • 55

4 Answers4

2

Vinayak.B's suggestion is an excellent workaround. http://www.stackoverflow.com/a/4314724/28557

gobernador
  • 5,659
  • 3
  • 32
  • 51
1

Android does not support full justification of the text. The alignments you list are the only ones available.

Your best option would be to load the text into a webview and use CSS to justify it.

Raghav Sood
  • 81,899
  • 22
  • 187
  • 195
0

AFAIK, Justify Alignment is not possible in Android Layout.

Lucifer
  • 29,392
  • 25
  • 90
  • 143
0

http://sealskej.blogspot.in/2010/12/only-way-how-to-align-text-in-block-in.html

I found this good workaround using webview.

if anyone figures out something better than this - do let me know.

sudhishkr
  • 3,318
  • 5
  • 33
  • 55