android 计算文字长度
时间: 2023-08-02 16:25:58 浏览: 224
计算字节长度
5星 · 资源好评率100%
你可以使用 Paint 类的 measureText() 方法来计算文字长度,示例代码如下:
```
String text = "Hello, world!";
Paint paint = new Paint();
float textWidth = paint.measureText(text);
```
其中,textWidth 就是文字的长度。注意,这里的长度是以像素为单位的。如果需要将长度转换为 dp 或 sp,可以使用 TypedValue 类的 applyDimension() 方法。
阅读全文