Android擷取TextView顯示的字串寬度

來源:互聯網
上載者:User

標籤:

工作上有業務需要判斷textview是否換行,我的做法是判斷textview要顯示的字串的寬度是否超過我設定的寬度,若超過則會執行換行。

項目中的其他地方也有這樣的需求,故直接使用了那一塊的代碼。如下

public float getTextWidth(Context Context, String text, int textSize){
TextPaint paint = new TextPaint();
float scaledDensity = Context.getResource().getDisplayMetrics().scaledDensity;
paint.setTextSize(scaledDensity * textSize);
return paint.measureText(text);
}
這裡是使用了TextPaint的measureText方法。

不過在項目實踐上發現了這個方法存在一些問題。當字串存在字母數字時,就會有1-2像素的誤差。也正是這個誤差,導致代碼上判斷換行錯誤,使得介面上顯示出錯。

為瞭解決這個問題,搜到了這篇文章 戳我

這篇文章中使用了另外一個方法測量,沒有new TextPaint,而是使用了TextView自己的TextPaint,這個Paint通過TextView.getPaint()方法獲得。

最後給出一個例子來看這兩種方法的差別。

測試機是MI4,xxdpi

代碼如下

public class MainActivity extends Activity {

private final static String TAG = "MainActivity";

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

// 測試字串
// 測試例子均用15sp的字型大小
String text = "測試中文";

TextView textView = (TextView) findViewById(R.id.test);
textView.setText(text);

int spec = MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED);
textView.measure(spec, spec);

// getMeasuredWidth
int measuredWidth = textView.getMeasuredWidth();

// new textpaint measureText
TextPaint newPaint = new TextPaint();
float textSize = getResources().getDisplayMetrics().scaledDensity * 15;
newPaint.setTextSize(textSize);
float newPaintWidth = newPaint.measureText(text);

// textView getPaint measureText
TextPaint textPaint = textView.getPaint();
float textPaintWidth = textPaint.measureText(text);

Log.i(TAG, "測試字串:" + text);
Log.i(TAG, "getMeasuredWidth:" + measuredWidth);
Log.i(TAG, "newPaint measureText:" + newPaintWidth);
Log.i(TAG, "textView getPaint measureText:" + textPaintWidth);

}
}
當測試字串為: “測試中文”時,結果如下

測試字串:測試中文
getMeasuredWidth:180
measureText:180.0
getPaint measureText:180.0
當測試字串為: “測試英文abcd”時,

測試字串:測試英文abcd
getMeasuredWidth:279
newPaint measureText:278.0
textView getPaint measureText:279.0
可見使用textView的TextPaint調用measureText方法得到的寬度才是真正的寬度。

Android擷取TextView顯示的字串寬度

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.