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?
I am new to android development.
Text Align Problems :
How can I justify
text in android?
Vinayak.B's suggestion is an excellent workaround. http://www.stackoverflow.com/a/4314724/28557
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.
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.