如何获取TextView的XY坐标和像素大小?

发布于 2024-12-12 07:35:35 字数 72 浏览 2 评论 0原文

给定一个 TextView,是否可以在运行时知道其绘制位置的 X 和 Y 坐标? 是否还可以知道以像素为单位的尺寸(宽度/长度)?

Given a TextView, is it possible to know at runtime the X and Y coordinates of where it is drawn?
Is it also possible to know the size (width/length) in pixels?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

轻拂→两袖风尘 2024-12-19 07:35:35

视图有 getLeft()getTop()getWidth()getHeight() 方法,它也适用于 textView。有关详细信息,请参阅以下链接...

getLeft()getTop() 将返回起始 x,y 坐标。

http://developer.android.com/reference/android/view/View.html

There are getLeft(), getTop(), getWidth(), getHeight() methods for a view, it works for textView too. for more information , see the following link...

getLeft() and getTop() will return you the starting x,y co-ordinates.

http://developer.android.com/reference/android/view/View.html

单身狗的梦 2024-12-19 07:35:35

相对于父级的坐标

int x = textView.getLeft();
int y = textView.getTop();

绝对坐标

int[] location = new int[2];
textView.getLocationOnScreen(location);
int x = location[0];
int y = location[1];

有关更多信息,请参阅此答案

像素大小

int width = textView.getWidth();
int height = textView.getHeight();

注释

  • 如果您得到 (0,0) ,可能是因为您正在获取与父布局相关的相对坐标(并且它位于父级的左上角)。也可能是因为您试图在视图布局之前获取坐标(例如,在 onCreate() 中)。

Coordinates relative to parent

int x = textView.getLeft();
int y = textView.getTop();

Absolute coordinates

int[] location = new int[2];
textView.getLocationOnScreen(location);
int x = location[0];
int y = location[1];

See this answer for more.

Pixel size

int width = textView.getWidth();
int height = textView.getHeight();

Notes

  • If you are getting (0,0) it could be because you are getting the relative coordinates related to the parent layout (and it is sitting in the top left corner of the parent). It could also be because you are trying to get the coordinates before the view has been laid out (for example, in onCreate()).
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文