获取按钮的坐标

Getting the coordinates of a button

如何获取按钮的坐标 (x,y)。

我尝试通过以下方式获取右上角的 y 值:(yCordOfButton) - (heighOfButton/2) ...这样,它几乎可以工作,但不能完全按照我需要的方式工作

您可以使用 View.getLocationOnScreen(int[]) 获取屏幕的左上角,然后您可以根据需要使用高度和宽度获取其他角。记录了 getLocationOnScreen here.