Android對字串的處理

來源:互聯網
上載者:User

 需求:實現長文字的滾動停留,所以需要將長字串截取成指定TextView長度的字串數組 ,然後使用ViewFilpper實現。

分割代碼如下:
/*  * 根據要求分割字串  */ public static String[] getLineStrs(String content, Paint paint, float width, float textSize) {     paint.setTextSize(textSize);//Note1:測量的工具首先需要定義單位      int index = 0;     int start = 0;     int end = 0;          float textLength = paint.measureText(content);      int lineNum = (int) Math.ceil(1.5*textLength / width) ;//Note2:計算行數因為判斷的不準確,所以增加餘量1.5倍,最後處理     String[] mSplitTextParts = new String[lineNum];          for (int i = 0; i <= content.length(); i++) {         end = i;          float measureLength = paint.measureText(content, start, end);//Note3:[start,end)範圍的字串          if (measureLength >= width) {                 mSplitTextParts[index] = content.substring(start, end);//Note4:[start,end)範圍的字串                 start = end;                 index++;             }          if (end == content.length()) {             mSplitTextParts[index] = content.substring(start, end);             return Arrays.copyOf(mSplitTextParts, index);//Note5:因為行數判斷的不準確,所以需要清除掉未賦值的null值字串         } }     return null; 

猜測分割不準的原因是:中英文混雜。可能是半形全形的問題。
測試後發現:
1, 全英文狀態下,半形全形計算的標準行數(未經過1.5倍的餘量修正)都ok。
2, 全中文狀態下,半形全形計算的標準行數(未經過1.5倍的餘量修正)都ok。
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.