1. Android中获取字符串长度、宽度(所占像素宽度)
  2. 计算出当前绘制出来的字符串有多宽,可以这么来!
  3. 方法1:
  4. Paint paint = new Paint();
  5. Rect rect = new Rect();
  6. //返回包围整个字符串的最小的一个Rect区域
  7. paint.getTextBounds(text, 0, 1, rect);
  8. strwid = rect.width();
  9. strhei = rect.height();
  10. 方法2:
  11. //直接返回参数字符串所占用的宽度
  12. strWidth = paintHead.measureText(text);
05-23 11:28