Possible Duplicate:
Can i set property of Textview like justify?

I'm writing an android app which needs text justification, which isn't supported natively, and I don't think using a WebView is going to work because of font and text sizes in relation to screen resolution and dimensions. With this in mind I'm going to write a custom view which extends the TextView which will do text justification and was wondering if anybody knows of any code I can look at which does this already to save me some time. Any other helpful advice would be greatly appreciated too.

link|improve this question

Depeding on what kind of justification we're talking about - you can manage quite a lot by just using the android:gravity attribute. – Kasper Moerch Nov 22 '11 at 10:48
Unfortunately I need full text justification with hyphening, if possible. – Martyn Nov 22 '11 at 10:51
feedback

closed as exact duplicate by Bill the Lizard Mar 18 at 12:09

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

I have created a simple class for this. It will mess around with the Strings to align it. It is is kind of the best solution I can make for this and I sincerely hope that it will help people. Again it is not perfect. I have attached a screenshot of the final result. The input numbers need to be played around with for a bit.

You should play around with it a bit more to make it more precise, but you get the basic idea from this.

HTML TEXT FORMATTING WILL NOT WORK FOR THIS

TextViewJustify.java

package mk.justifytext;

import android.graphics.Paint;
import android.view.Gravity;
import android.widget.TextView;

public class TextViewJustify {

/* PLEASE DO NOT REMOVE
 * Coded by Mathew Kurian
 * I wrote this code for a Google Interview for Internship. 
 * Unfortunately, I got too nervous during the interview that I messed, but anyhow
 * that doesn't matter. I have resent my work in hopes that I might still get a   position there.
 * Thank you :DD
 * 
 */

final static String SYSTEM_NEWLINE  = "\n";
final static float COMPLEXITY = 5.12f;  //Reducing this will increase efficiency but will decrease effectiveness
final static Paint p = new Paint();

public static void justifyText(final TextView tv, final float origWidth){
    String s = (String) tv.getText();
    p.setTypeface(tv.getTypeface());        
    String [] splits = s.split(SYSTEM_NEWLINE);
    float width = origWidth - 5;
    for(int x = 0; x<splits.length;x++)
        if(p.measureText(splits[x])>width){
            splits[x] = wrap(splits[x], width, p);
            String [] microSplits = splits[x].split(SYSTEM_NEWLINE);
            for(int y = 0; y<microSplits.length-1;y++)
                microSplits[y] = justify(removeLast(microSplits[y], " "), width, p);
            StringBuilder smb_internal = new StringBuilder();
            for(int z = 0; z<microSplits.length;z++)
                smb_internal.append(microSplits[z]+((z+1<microSplits.length) ? SYSTEM_NEWLINE : ""));
            splits[x] = smb_internal.toString();
        }       
    final StringBuilder smb = new StringBuilder();
    for(String cleaned : splits)
        smb.append(cleaned+SYSTEM_NEWLINE);
    tv.setGravity(Gravity.LEFT);
    tv.setText(smb);
}
private static String wrap(String s, float width, Paint p){
    String [] str = s.split("\\s"); //regex
    StringBuilder smb = new StringBuilder(); //save memory
    smb.append(SYSTEM_NEWLINE);
    for(int x = 0; x<str.length; x++){
        float length = p.measureText(str[x]);
        String [] pieces = smb.toString().split(SYSTEM_NEWLINE);
        try{
            if(p.measureText(pieces[pieces.length-1])+length>width)         
                smb.append(SYSTEM_NEWLINE);
        }catch(Exception e){}
        smb.append(str[x] + " ");
    }
    return smb.toString().replaceFirst(SYSTEM_NEWLINE, "");
}
private static String removeLast(String s, String g){
    if(s.contains(g)){
        int index = s.lastIndexOf(g);
        int indexEnd = index + g.length();
        if(index == 0) return s.substring(1);
        else if(index == s.length()-1)  return s.substring(0, index);
        else
            return s.substring(0, index) + s.substring(indexEnd);
    }
    return s;
}
private static String justifyOperation(String s, float width, Paint p){
    float holder = (float) (COMPLEXITY*Math.random());
    while(s.contains(Float.toString(holder)))
        holder = (float) (COMPLEXITY*Math.random());
    String holder_string = Float.toString(holder);
    float lessThan = width;
    int timeOut = 100;
    int current = 0;
    while(p.measureText(s)<lessThan&&current<timeOut) {
        s = s.replaceFirst(" ([^"+holder_string+"])", " "+holder_string+"$1");
        lessThan = p.measureText(holder_string)+lessThan-p.measureText(" ");
        current++;          
    }
    String cleaned = s.replaceAll(holder_string, " ");
    return cleaned;
}
private static String justify(String s, float width, Paint p){
    while(p.measureText(s)<width){
        s = justifyOperation(s,width, p);
    }
    return s;
}

}

Using it

((TextView)findViewById(R.id.textview)).setText(input);
TextViewJustify.justifyText(((TextView)findViewById(R.id.textview)), 305f); 
//Start from a small number like 150f and move up from there to get the exact width. 
//I haven't fixed this problem yet. 305f works best for me in this case.

Disclaimer: This is just a workaround solution. Not perfect.!!!!!!!

Before it was formatted:

No-Justification.png

After formatting:

Justified.png

Hope this helps you and everyone

link|improve this answer
feedback

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