How do you get the text of a TextView to be Justified (with text flush on the left- and right- hand sides)?
I found a possible solution here, but it does not work (even if you change vertical-center to center_vertical, etc).
Cheers,
Pete
|
|
I do not believe Android supports full justification. |
|||||||||||||
|
|
EDIT: Updated my answer, as this does not solve the "Full Justification" (or simply "Justification", as it is sometimes called) Problem. This solves simply for "Left/Right Justification". See the wikipedia article on Justification for the distinction. So I had a similar problem with Left/Right Justification (not Full Justification, as the question is asking about). I was creating a basic 2-column form (labels on the left and text fields on the right). I wanted the labels on the left to be right justified so they would appear flush up against their text fields. In the XML layout file I was able to get the TextViews elments themeslves to align to the right by adding the following attribute inside all of my TextViews doing this:
However, if the text wrapped to multiple lines, the text would still be left justified inside the TextView. Adding the following attribute made the actual text right justified (ragged left) inside the TextView:
So gravity attribute specifies how to align the text inside the TextView layout_gravity specifies how to align/layout the TextView element itself. |
|||||||||||||||
|
|
To justify text in android I used WebView
and html.
I can't yet upload images to prove it but "it works for me". |
|||||||||||||
|
|
You have to set
and
|
||||
|
|
|
I have written article about it. Check it: http://sealskej.blogspot.com/2010/12/only-way-how-to-align-text-in-block-in.html |
|||||||
|
|
With a LinearLayout, you should try this:
The parameter |
|||
|
|
Here's how I did it, I think the most elegant way I could. With this solution, the only things you need to do in your layouts are:
Here's the code. Works perfectly fine on my phones (Galaxy Nexus Android 4.0.2, Galaxy Teos Android 2.1). Feel free, of course, to replace my package name with yours. /assets/justified_textview.css:
/res/values/attrs.xml:
/res/layout/test.xml:
/src/net/bicou/myapp/widget/JustifiedTextView.java:
We need to set the rendering to software in order to get transparent background on Android 3+. Hence the try-catch for older versions of Android. Hope this helps! PS: please not that it might be useful to add this to your whole activity on Android 3+ in order to get the expected behavior: |
||||
|
|
|
|
||||
|
|
|
This worked for me:
The critical line is
Without that the text doesn't justify! Maybe Google should update their SDK docs with a some real code world examples! http://developer.android.com/reference/android/widget/TextView.html is a great overview, but they really need to append the document with some simple how to's/explanations/caveats. , it took me a good while to figure this out and some frustration to do something as simply as justify my text! GRrrrrr! Bad that the assumption might simply be "this can't be done". |
|||||
|
|
This doesn't really justify your text but
is the best choice you have. Sincerly, Wolfen |
|||||
|
|
I think there are two options:
|
|||
|
|
|
For html formating you don't need to call the Webkit, you could use Source : http://developer.android.com/guide/topics/resources/string-resource.html |
||||
|
|
|
on android, to left justify text and not have truncation of the background color, try this, it worked for me, producing consistent results on android, ff, ie & chrome but you have to measure out the space that's left in between for the text when calculating the padding.
the hack is the any attempt to to a left or justify code in css or html results in a background that's only half width. |
||||
|
|
|
Android does not yet support full justification. We can use Webview and justify HTML instead of using textview. It works so fine. If you guys not clear, feel free to ask me :) |
|||
|
|
|
this worked for me
|
|||||
|
|
There is justification built-in. Try the gravity attribute. Edit - I misunderstood the question. The correct answer is that justification is not supported. |
|||||||
|
|
Or you can use standart functional and set text like that:
|
|||
|
|
|
This may not be exactly right for "justification" but it works to align 2 elements in a left/right orientation.
|
|||
|
|
|
Try using <
BLAM, justified! |
|||||||
|