gpt4 book ai didi

android - 如何在 Android 上获取字符串宽度?

转载 作者:IT老高 更新时间:2023-10-28 13:06:12 24 4
gpt4 key购买 nike

如果可能的话,我也想获得高度。

最佳答案

您可以使用 getTextBounds(String text, int start, int end, Rect bounds) Paint 对象的方法。您可以使用 TextView 提供的绘制对象,也可以自己构建一个具有所需文本外观的对象。

使用 Textview,您可以执行以下操作:

Rect bounds = new Rect();
Paint textPaint = textView.getPaint();
textPaint.getTextBounds(text, 0, text.length(), bounds);
int height = bounds.height();
int width = bounds.width();

关于android - 如何在 Android 上获取字符串宽度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3630086/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com