2011-01-25 135 views
22

我有應設置爲TextView的具有指定的寬度的文本。它需要計算文本大小以適合TextView。計算文本大小

換句話說:有沒有適合文本TextView的區域,像ImageView的規模型特徵的方法嗎?

+1

這裏檢查這個答案http://stackoverflow.com/questions/7259016/scale-text-in-a-view-to-fit/7259136#7259136 – Ronnie 2012-05-06 15:02:08

回答

29

如果是空的,然後後面的文本需要你的大小以下可能幫助:

Paint paint = new Paint(); 
Rect bounds = new Rect(); 

int text_height = 0; 
int text_width = 0; 

paint.setTypeface(Typeface.DEFAULT);// your preference here 
paint.setTextSize(25);// have this the same as your text size 

String text = "Some random text"; 

paint.getTextBounds(text, 0, text.length(), bounds); 

text_height = bounds.height(); 
text_width = bounds.width(); 

編輯(後評論): 使用上述反向:

int text_height = 50; 
int text_width = 200; 

int text_check_w = 0; 
int text_check_h = 0; 

int incr_text_size = 1; 
boolean found_desired_size = true; 

while (found_desired_size){ 
    paint.setTextSize(incr_text_size);// have this the same as your text size 

    String text = "Some random text"; 

    paint.getTextBounds(text, 0, text.length(), bounds); 

    text_check_h = bounds.height(); 
    text_check_w = bounds.width(); 
    incr_text_size++; 

if (text_height == text_check_h && text_width == text_check_w){ 
found_desired_size = false; 
} 
} 
return incr_text_size; // this will be desired text size from bounds you already have 

//這個方法可能會稍微調整一下,但是給你一個你可以做什麼的想法

+2

這不完全是我想要的。我不需要根據文字大小和字體來計算文字高度/寬度。我需要根據高度/寬度和字體來計算文本大小。 – kankan 2011-01-25 16:22:55

+0

@kankan:didi你能得到答案嗎? – DKV 2017-01-06 06:13:21

26

這應該是一個簡單的解決方案:

public void correctWidth(TextView textView, int desiredWidth) 
{ 
    Paint paint = new Paint(); 
    Rect bounds = new Rect(); 

    paint.setTypeface(textView.getTypeface()); 
    float textSize = textView.getTextSize(); 
    paint.setTextSize(textSize); 
    String text = textView.getText().toString(); 
    paint.getTextBounds(text, 0, text.length(), bounds); 

    while (bounds.width() > desiredWidth) 
    { 
     textSize--; 
     paint.setTextSize(textSize); 
     paint.getTextBounds(text, 0, text.length(), bounds); 
    } 

    textView.setTextSize(TypedValue.COMPLEX_UNIT_PX, textSize); 
} 
+0

這應該是解決方案。 – Claud 2014-06-04 03:07:35

2

我也有,以確保文本適合特定的盒子時,面臨同樣的問題。以下是表現最好的,最準確的解決方案,我目前有這方面:

/** 
* A paint that has utilities dealing with painting text. 
* @author <a href="maillto:nospam">Ben Barkay</a> 
* @version 10, Aug 2014 
*/ 
public class TextPaint extends android.text.TextPaint { 
    /** 
    * Constructs a new {@code TextPaint}. 
    */ 
    public TextPaint() { 
     super(); 
    } 

    /** 
    * Constructs a new {@code TextPaint} using the specified flags 
    * @param flags 
    */ 
    public TextPaint(int flags) { 
     super(flags); 
    } 

    /** 
    * Creates a new {@code TextPaint} copying the specified {@code source} state. 
    * @param source The source paint to copy state from. 
    */ 
    public TextPaint(Paint source) { 
     super(source); 
    } 

    // Some more utility methods... 

    /** 
    * Calibrates this paint's text-size to fit the specified text within the specified width. 
    * @param text  The text to calibrate for. 
    * @param boxWidth The width of the space in which the text has to fit. 
    */ 
    public void calibrateTextSize(String text, float boxWidth) { 
     calibrateTextSize(text, 0, Float.MAX_VALUE, boxWidth); 
    } 

    /** 
    * Calibrates this paint's text-size to fit the specified text within the specified width. 
    * @param text  The text to calibrate for. 
    * @param min  The minimum text size to use. 
    * @param max  The maximum text size to use. 
    * @param boxWidth The width of the space in which the text has to fit. 
    */ 
    public void calibrateTextSize(String text, float min, float max, float boxWidth) { 
     setTextSize(10); 
     setTextSize(Math.max(Math.min((boxWidth/measureText(text))*10, max), min)); 
    } 
} 

這只是計算正確的大小,而不是運行的試驗/錯誤的測試。

您可以使用它像這樣:

float availableWidth = ...; // use your text view's width, or any other width. 
String text = "Hi there"; 
TextPaint paint = new TextPaint(Paint.ANTI_ALIAS_FLAG); 
paint.setTypeface(...); 
paint.calibrateTextSize(text, availableWidth); 

或其他方式,如果你想實現垃圾:

/** 
* Calibrates this paint's text-size to fit the specified text within the specified width. 
* @param paint  The paint to calibrate. 
* @param text  The text to calibrate for. 
* @param min  The minimum text size to use. 
* @param max  The maximum text size to use. 
* @param boxWidth The width of the space in which the text has to fit. 
*/ 
public static void calibrateTextSize(Paint paint, String text, float min, float max, float boxWidth) { 
    paint.setTextSize(10); 
    paint.setTextSize(Math.max(Math.min((boxWidth/paint.measureText(text))*10, max), min)); 
} 

使用像這樣:

float availableWidth = ...; // use your text view's width, or any other width. 
String text = "Hi there"; 
Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG); 
paint.setTypeface(...); 
calibrateTextSize(paint, text, 0, Float.MAX_VALUE, availableWidth); 
3
public static float getFitTextSize(TextPaint paint, float width, String text) { 
    float nowWidth = paint.measureText(text); 
    float newSize = (float) width/nowWidth * paint.getTextSize(); 
    return newSize; 
}