int[] location = new int[2];
view.getLocationInWindow(location);
int x = location[0]; // view距离window 左边的距离(即x轴方向)
int y = location[1]; // view距离window 顶边的距离(即y轴方向)
// 注:要在onWindowFocusChanged()里获取,即等window窗口发生变化后
3. 示意图
方式4:getLocationOnScreen()
1. 应用场景
获得 View 相对 屏幕 的绝对坐标
2. 使用
int[] location = new int[2];
view.getLocationOnScreen(location);
int x = location[0]; // view距离 屏幕左边的距离(即x轴方向)
int y = location[1]; // view距离 屏幕顶边的距离(即y轴方向)
// 注:要在view.post(Runable)里获取,即等布局变化后
3. 示意图
方式5:getGlobalVisibleRect()
1. 应用场景
View可见部分 相对于 屏幕的坐标。
2. 具体使用
Rect globalRect = new Rect();
view.getGlobalVisibleRect(globalRect);
globalRect.getLeft();
globalRect.getRight();
globalRect.getTop();
globalRect.getBottom();
3. 示意图
方式6:getLocalVisibleRect()
1. 应用场景
View可见部分 相对于 自身View位置左上角的坐标。
2. 具体使用
Rect localRect = new Rect();
view.getLocalVisibleRect(localRect);
localRect.getLeft();
localRect.getRight();
localRect.getTop();
localRect.getBottom();