gpt4 book ai didi

android - 查找字符的坐标?

转载 作者:太空狗 更新时间:2023-10-29 16:39:22 26 4
gpt4 key购买 nike

我有一个多行 TextView。有没有办法获取字符左侧像素的 x 坐标,例如第三个角色?在我的例子中,它将始终是第 3 个字符,但通用解决方案会更好。

我使用字符正上方的像素的 y 坐标:

Layout textViewLay = mTextView.getLayout();
int posY = textViewLay.getLineTop(0);

但是 x 坐标让我难住了。有任何想法吗?我可能遗漏了一些非常简单的东西。

最佳答案

尝试使用这段代码:

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

关于android - 查找字符的坐标?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20696265/

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