怎样得到字符宽度
发布网友
发布时间:2023-06-06 15:15
我来回答
共1个回答
热心网友
时间:2024-12-11 15:59
这里的字符或者字符串的宽度,计算的是其像素值。有以下两种方法:方法1:
Paint
paint=
new
Paint();
Rect
rect
=
new
Rect();
//返回包围整个字符串的最小的一个Rect区域
paint.getTextBounds(str,
0,
1,
rect);
int
strwidth
=
rect.width();
int
strheight
=
rect.height();方法2:
//直接返回参数字符串所占用的宽度
float
strwidth
=
paint.measureText(str);
对于字符而言,可以将字符转换成字符串,然后计算。例如:
char
c
=
'c';
然后利用上面两种方法即可。