Android筆記 自訂控制項時drawText字串寬度的3種計算方式

來源:互聯網
上載者:User

標籤:

    我們經常在做自訂控制項的時候,有些控制項是需要圖文一起顯示的,顯示文字就肯定要用到drawText 方法,而drawText(str, x, y, paint)有兩個參數x 和 y是繪製的座標,我們必須確定這個座標之後,才能知道從哪裡繪製,有時候我們繪製完一個字串,而想在這個字串的後面重新進行一些繪製的時候,就需要重新擷取繪製座標,這個時候首先想到的就是得到前一個字串的繪製寬度 + 前一個字串的繪製座標就可以推算我們現在繪製的座標了。

String str = "hello";canvas.drawText(str, x, y, mPaint);//1. 粗略計算文字寬度:float width = mPaint.measureText(str);//2. 計算文字的矩形,可以得到寬高:Rect rect = new Rect();mPaint.getTextBounds(str, 0, str.length(), rect);int w = rect.width();int h = rect.height();//3. 精確計算文字的寬度:public static int getTextWidth(Paint mPaint, String str){ float iSum = 0; if(str != null && !str.equals("")) { int len = str.length(); float widths[] = new float[len]; paint.getTextWidths(str, widths); for(int i = 0; i < len; i++) { iSum += Math.ceil(widths[i]) } } return (int)iSum;}

 

Android筆記 自訂控制項時drawText字串寬度的3種計算方式

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.