How do you get the text of a TextView to be Justified (with text flush on the left- and right- hand sides)?
TextView
I found a possible solution here, but it do
I think there are two options:
Use something like Pango that specializes in this via the NDK and render text to an OpenGL or other surface.
Use Paint.measureText() and friends to get the lengths of words and lay them out manually on a Canvas in a custom view.