在Android中,要获取一个View的位置,可以使用以下方法:
getLocationOnScreen()
或getLocationInWindow()
方法。这两个方法都会返回一个包含x和y坐标的int数组。int[] location = new int[2];
view.getLocationOnScreen(location); // 或者使用 view.getLocationInWindow(location);
int x = location[0];
int y = location[1];
getLocationOnScreen()
方法返回的是View在整个屏幕上的位置,而getLocationInWindow()
方法返回的是View在当前窗口(Window)中的位置。
ViewTreeObserver
。你可以为View设置一个全局布局监听器,然后在回调方法中获取View的位置。view.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
int[] location = new int[2];
view.getLocationOnScreen(location); // 或者使用 view.getLocationInWindow(location);
int x = location[0];
int y = location[1];
// 移除监听器,避免重复调用
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
view.getViewTreeObserver().removeOnGlobalLayoutListener(this);
} else {
view.getViewTreeObserver().removeGlobalOnLayoutListener(this);
}
}
});
请注意,这种方法可能会在View布局完成时多次调用。因此,在获取到位置信息后,建议移除监听器以避免不必要的性能开销。