我的代码是
Paint paint= new Paint();
paint.setTextSize(size);
int iRet = 0;
if (str != null && str.length() > 0) {
int len = str.length();
float[] widths = new float[len];
paint.getTextWidths(str, widths);
for (int j = 0; j < len; j++) {
iRet += (int) Math.ceil(widths[j]);
}
}
return iRet;
我想获取字符串的宽度,但返回结果与 TextView 有错误。
不知道正确的方法。
谢谢。
我在虚拟机中显示它。