Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
@Jimbo answer is correct definetly working for my case on inputtext and textview for language arabic from right to left input and display but for input text i had to add also gravity="right" – shareef Dec 21 '12 at 16:33

19 Answers

up vote 34 down vote accepted

I do not believe Android supports full justification.

share|improve this answer
4  
Upon further analysis, you could give android:gravity="fill_horizontal" a shot. That is described as "Grow the horizontal size of the object if needed so it completely fills its container", but I do not know how they "grow" the text. – CommonsWare Aug 18 '09 at 12:35
2  
android:gravity="fill_horizontal" didn't work either. It looks like android doesn't support justification after all, oh well :) – Peter Aug 19 '09 at 11:37
Just take a look at my answer, there is a way to justify text – Wolfen Aug 27 '12 at 12:44
No, you can't set the property like gravity. But still you can set the justification to your text by taking webview instead of text view. You may refer to seal.io/2010/12/only-way-how-to-align-text-in-block-in.html. (Stole from stackoverflow.com/questions/5976627/…) – jcaruso yesterday

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:

<TextView>
   ...
   android:layout_gravity="center_vertical|right"
   ...
</TextView>

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:

<TextView>
   ...
   android:gravity="right"
   ...
</TextView>

So gravity attribute specifies how to align the text inside the TextView layout_gravity specifies how to align/layout the TextView element itself.

share|improve this answer
2  
If I understand correctly, and given the results of testing this, all this does is align text left or right. This doesn't justify the text, does it? – Paul Lammertsma Sep 12 '11 at 7:31
1  
That is correct. I should probably update my answer, as I incorrectly state "I had this exact same problem". The question was referring to "full" justification, whereas I had thought it was referring to justifictation in general (as did many others judging by the number of votes this answer got). My answer simply solves for left and right justification, not full. The accepted CommonsWare answer is correct; however, there is a workaround posted below by Kondzio that appearst to be sufficient. I've been thinking you could probably implement your own TextView that supports Full Justification. – Jimbo Sep 12 '11 at 20:38
2  
Excellent. Just to add, if you want center justification, you can do android:layout_gravity="center_horizontal|center" android:gravity="center". – Luis A. Florit Dec 8 '12 at 5:33
definetly working for my case on inputtext and textview for language arabic from right to left input and display – shareef Dec 21 '12 at 16:32

To justify text in android I used WebView

    setContentView(R.layout.main);

    WebView view = new WebView(this);
    view.setVerticalScrollBarEnabled(false);

    ((LinearLayout)findViewById(R.id.inset_web_view)).addView(view);

    view.loadData(getString(R.string.hello), "text/html", "utf-8");

and html.

<string name="hello">
<![CDATA[
<html>
 <head></head>
 <body style="text-align:justify;color:gray;background-color:black;">
  Lorem ipsum dolor sit amet, consectetur 
  adipiscing elit. Nunc pellentesque, urna
  nec hendrerit pellentesque, risus massa
 </body>
</html>
]]>
</string>

I can't yet upload images to prove it but "it works for me".

share|improve this answer
Nice solution here. FWIW you don't need most of the extra html. The body tag with text align is enough. – gnac Aug 31 '11 at 4:10
This works well. Note that you can make the background transparent by following view.loadData() with view.setBackgroundColor("#00000000"). – Paul Lammertsma Sep 12 '11 at 21:09
I've not been successful in getting it to load a custom font/typeface, however. I've tried this and this suggestion, without any luck. – Paul Lammertsma Sep 12 '11 at 21:16
1  
As I mentioned in those threads, I found a resolution: if you create an HTML file and place it in the assets, loading it via view.loadUrl() works, whereas view.loadData() does not. I have no clue why the latter doesn't. – Paul Lammertsma Sep 12 '11 at 22:13
i wish to set a background image how can i modify this line <body style="text-align:justify;color:gray;background-color:black;"> – Aerrow Feb 29 '12 at 10:04
show 3 more comments

You have to set

android:layout_height="wrap_content"

and

android:layout_centerInParent="true"
share|improve this answer

I have written article about it. Check it:

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

share|improve this answer
7  
Summary of sealskej's post: don't use TextView, use a WebView. It's not really a solution to the question, but may be useful. – James Moore Jul 17 '11 at 23:23
That's a lot like @Kondzio's answer. – Shurane Mar 14 '12 at 20:58

With a LinearLayout, you should try this:

<LinearLayout android:layout_width="fill_parent"
              android:layout_height="fill_parent" 
              android:orientation="horizontal">
    <TextView android:text="min"
              android:id="@+id/textView2"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"/>
    <TextView android:text="Current" 
              android:id="@+id/textView1"
              android:layout_width="wrap_content" 
              android:layout_height="wrap_content" 
              android:gravity="center_horizontal"      
              android:layout_gravity="fill_horizontal"
              android:layout_weight="1"/>
    <TextView android:text="max" 
              android:id="@+id/textView3"
              android:layout_width="wrap_content" 
              android:layout_height="wrap_content"/>
</LinearLayout>

The parameter android:gravity="center_horizontal" center the text in the TextView and the parameter android:layout_gravity="fill_horizontal" fills the TextView between the two others TextView

share|improve this answer
This center aligns the text, but doesn't justify it. I don't see how this answers the question. – Paul Lammertsma Sep 12 '11 at 7:32

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:

  • add an additional xmlns declaration
  • change your TextViews source text namespace from android to your new namespace
  • replace your TextViews with x.y.z.JustifiedTextView

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:

body {
    font-size: 1.0em;
    color: rgb(180,180,180);
    text-align: justify;
}

@media screen and (-webkit-device-pixel-ratio: 1.5) {
    /* CSS for high-density screens */
    body {
        font-size: 1.05em;
    }
}

@media screen and (-webkit-device-pixel-ratio: 2.0) {
    /* CSS for extra high-density screens */
    body {
        font-size: 1.1em;
    }
}

/res/values/attrs.xml:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <declare-styleable name="JustifiedTextView">
        <attr name="text" format="reference" />
    </declare-styleable>
</resources>

/res/layout/test.xml:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:myapp="http://schemas.android.com/apk/res/net.bicou.myapp"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <net.bicou.myapp.widget.JustifiedTextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            myapp:text="@string/surv1_1" />

    </LinearLayout>
</ScrollView>

/src/net/bicou/myapp/widget/JustifiedTextView.java:

package net.bicou.myapp.widget;

import net.bicou.myapp.R;

import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Color;
import android.util.AttributeSet;
import android.util.TypedValue;
import android.view.View;
import android.webkit.WebView;

public class JustifiedTextView extends WebView {
    public JustifiedTextView(final Context context) {
        this(context, null, 0);
    }

    public JustifiedTextView(final Context context, final AttributeSet attrs) {
        this(context, attrs, 0);
    }

    public JustifiedTextView(final Context context, final AttributeSet attrs, final int defStyle) {
        super(context, attrs, defStyle);

        if (attrs != null) {
            final TypedValue tv = new TypedValue();
            final TypedArray ta = context.obtainStyledAttributes(attrs, R.styleable.JustifiedTextView, defStyle, 0);
            if (ta != null) {
                ta.getValue(R.styleable.JustifiedTextView_text, tv);

                if (tv.resourceId > 0) {
                    final String text = context.getString(tv.resourceId).replace("\n", "<br />");
                    loadDataWithBaseURL("file:///android_asset/",
                            "<html><head>" +
                                    "<link rel=\"stylesheet\" type=\"text/css\" href=\"justified_textview.css\" />" +
                                    "</head><body>" + text + "</body></html>",

                                    "text/html", "UTF8", null);
                    setTransparentBackground();
                }
            }
        }
    }

    public void setTransparentBackground() {
        try {
            setLayerType(View.LAYER_TYPE_SOFTWARE, null);
        } catch (final NoSuchMethodError e) {
        }

        setBackgroundColor(Color.TRANSPARENT);
        setBackgroundDrawable(null);
        setBackgroundResource(0);
    }
}

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:
android:hardwareAccelerated="false"

share|improve this answer

FILL_HORIZONTAL is equivalent to CENTER_HORIZONTAL. You can see this code snippet in textview's source code:

case Gravity.CENTER_HORIZONTAL:
case Gravity.FILL_HORIZONTAL:
    return (mLayout.getLineWidth(0) - ((mRight - mLeft) -
            getCompoundPaddingLeft() - getCompoundPaddingRight())) /
            getHorizontalFadingEdgeLength();
share|improve this answer

This worked for me:

    TextView tv = new TextView(context);
    tv.setWidth(40);
    tv.setGravity(Gravity.RIGHT); // attempt at justifying text 
    tv.setMaxLines(1);
    tv.setText("Hi");

    this.addView(tv);

The critical line is

tv.setWidth(40);

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".

share|improve this answer
this did it for me! thanks – binnyb Oct 22 '10 at 21:13
This right aligns the text, but doesn't justify it. Justification means that the text should be flushed left and right. I don't see how this answers the question. – Paul Lammertsma Sep 14 '11 at 10:01

This doesn't really justify your text but

android:gravity="center_horizontal"

is the best choice you have.

Sincerly, Wolfen

share|improve this answer
1  
No, that centers the text. It does not justify it. Quoting Wikipedia: "In justified text, the spaces between words, and, to a lesser extent, between glyphs or letters (kerning), are stretched or sometimes compressed in order to make the text align with both the left and right margins." – CommonsWare Aug 27 '12 at 13:36

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.

share|improve this answer

For html formating you don't need to call the Webkit, you could use Html.fromHtml(text) to do the job.

Source : http://developer.android.com/guide/topics/resources/string-resource.html

share|improve this answer

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.

<td style="font-family:Calibri,Arial;font-size:15px;font-weight:800;background-color:#f5d5fd;color:black;border-style:solid;border-width:1px;border-color:#bd07eb;padding-left:10px;padding-right:1000px;padding-top:3px;padding-bottom:3px;>

the hack is the padding-right:1000px; that pushes the text to the extreme left

any attempt to to a left or justify code in css or html results in a background that's only half width.

share|improve this answer

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 :)

share|improve this answer

this worked for me

<TextView>
   ...
   android:gravity="center_vertical|right"
   ...
</TextView>
share|improve this answer
1  
oops i guess mine is for Right Justification only – Samuel Sep 30 '10 at 1:38

There is justification built-in. Try the gravity attribute.

Edit - I misunderstood the question. The correct answer is that justification is not supported.

share|improve this answer
I think he means full-justify/left-justify/right-justify. It's different than just gravity, it's where the left and right sides are both aligned to their respective edges. – kcoppock Mar 9 '11 at 3:14
Yes, I didn't realize that at first. Thank you. – Matthew Willis Mar 9 '11 at 3:15
I acknowledged that it's not supported. I'm asking how I can implement it – yydl Mar 9 '11 at 3:18

Or you can use standart functional and set text like that:

this.txtDescription.setText(Html.fromHtml("<p align=\"justify\">"+[some big text data to justify]+"</p>"));
share|improve this answer

This may not be exactly right for "justification" but it works to align 2 elements in a left/right orientation.

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
            android:id="@+id/summaryRowRelative"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:gravity="center_vertical"
            android:longClickable="false"
            android:clickable="false"
            android:descendantFocusability="blocksDescendants"
>

<TextView android:id="@+id/summary_label"
    android:focusable="false"
    android:clickable="false"
    android:longClickable="false"
    android:layout_alignParentLeft="true"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"/>

<TextView android:id="@+id/summary_amount"
    android:focusable="false"
    android:clickable="false"
    android:longClickable="false"
    android:layout_alignParentRight="true"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"/>

share|improve this answer

Try using < RelativeLayout > (making sure to fill_parent), then just add android:layout_alignParentLeft="true" and

android:layout_alignParentRight="true" to the elements you would like on the outside LEFT & RIGHT.

BLAM, justified!

share|improve this answer
great example here: stackoverflow.com/questions/2099249/… – esharp Mar 9 '11 at 20:12
2  
Still is not what he's looking for. See Justification at Wikipedia: en.wikipedia.org/wiki/Justification_(typesetting) – kcoppock Mar 10 '11 at 4:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.