Android:获取View视图在屏幕绝对位置和坐标方法总结

Posted LQS_Android

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android:获取View视图在屏幕绝对位置和坐标方法总结相关的知识,希望对你有一定的参考价值。

本文转自两篇文章的结合:地址附在文后:

正文内容:

1.View在屏幕上的占用区域、显示区域、绘制区域

区域区域描述区域宽区域高
浅蓝色区域View在屏幕中的占用区域这个区域的宽度=View的宽度+layout_marginStart+layout_marginEnd这个区域的高度=View的高度+layout_marginTop+layout_marginBottom
红色区域View在屏幕中的显示区域;
View的背景所显示的区域;View的点击事件所相应的区域;
这个区域的宽度=View的宽度=View内容的宽度+paddingLeft+paddingRight;这个区域的高度=View的高度=View内容的高度+paddingTop+paddingBottom;
绿色区域View内容在屏幕中的显示区域这个区域的宽度=View的宽度-paddingLeft-paddingRight;这个区域的高度=View内容的高度-paddingTop-paddingBottom;

2. View填充区域padding和margin区域值的获取

padding和margin的值可以在xml文件中设置,所以只要xml文件被加载,不论View是否被绘制,都可以获取这些值。

例如:

3. View的getLeft()、getTop()、getRight()、getBottom()方法

 这四个方法用于获取View相对于父View的坐标,继而获取View的宽和高。

View的宽度=getRight()-getLeft();

View的高度=getBottom()-getTop();

这四个方法必须在View被绘制后才能被调用。在View被绘制之前调用等到的值都是0.

例如:可以在View的post(Runnable)中调用,或者在View的onClick点击事件中调用,或者在Activity(或Fragment)的onPause()方法中调用。在Activity(或Fragment)的onResume()中调用不行,因为View是在onResume()方法执行时进行绘制的,此时调用View可能还没有绘制完,所以返回的是0.

方法描述
getLeft()子View左边界到父View左边界的距离
getTop()子View上边界到父View上边界的距离
getRight()子View右边界到父View左边界的距离
getBottom()子View下边界到父View上边界的距离

4. MotionEvent的getX(),getY(),getX(int),getY(int),getRawX(),getRawY(),getRawX(int),getRawY(int)方法:

 获取点击事件处相当于点击控件或者屏幕的坐标。

方法描述备注
getX()点击事件处相对于点击控件左边的距离MotionEvent的getPointerCount()方法:一根手指按压屏幕返回1,5根手指按压返回5
getY()点击事件处相对于点击控件上边的距离getX(int),getY(int),getRawX(int),getRawY(int)方法中的int的取值从0到getPointerCount()-1。
getRawY()点击事件处相对于点击屏幕上边的距离这里的几个方法可以在View的setOnTouchListener中的回调方法boolean onTouch(View v, MotionEvent event)里面调用。
getX(int)与getX()一样boolean onTouch(View v, MotionEvent event)方法返回true,则事件不会再向下传递。
getY(int)与getY()一样例如:onTouch返回false时,点击事件和click事件都会响应
getY(int)与getRawX()一样onTouch返回true时,点击事件会响应和click事件不再响应
getRawY(int)与getRawY()一样
getRawY(int)与getRawY()一样

5. getLocationInWindow()获取控件相对于窗口Window的位置。

 可以在Activity的onWindowFocusChanged(boolean hasFocus)中调用:

方法描述
int[] location=new int[2];
toolbar.getLocationInWindow(location);int x = location[0];
View的左边到window的左边的距离(x轴方向)
int[] location=new int[2];
toolbar.getLocationInWindow(location);int x = location[1];
View的上边到window的上边的距离(y轴方向)

Window的高度=状态栏高度+ActionBar高度(可能没有)+布局的高度。获取Window的宽和高的方法如下:

1. 应用场景

获取控件相对窗口Window 的位置

2. 具体使用

int[] location = new int[2];
view.getLocationInWindow(location);
int x = location[0]; // view距离window 左边的距离(即x轴方向)
int y = location[1]; // view距离window 顶边的距离(即y轴方向)

// 注:要在onWindowFocusChanged()里获取,即等window窗口发生变化后

7.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)里获取,即等布局变化后

8.getGlobalVisibleRect():全局可见区域

1. 应用场景

View可见部分相对于屏幕的坐标。

2. 具体使用

Rect globalRect = new Rect();
view.getGlobalVisibleRect(globalRect);

globalRect.getLeft();
globalRect.getRight();
globalRect.getTop();
globalRect.getBottom();

3. 示意图

 9.getLocalVisibleRect():局部可见区域

1. 应用场景

View可见部分相对于自身View位置左上角的坐标。

2. 具体使用

Rect localRect = new Rect();
view.getLocalVisibleRect(localRect);

localRect.getLeft();
localRect.getRight();
localRect.getTop();
localRect.getBottom();

3. 示意图


总结

本文对android获取View坐标位置的方式进行了全面讲解,总结如下:

参考实例:https://blog.csdn.net/luqingshuai_eloong/article/details/114320230https://blog.csdn.net/luqingshuai_eloong/article/details/114320230 

文章转载自知乎:Android中View的坐标及各种位置 - 知乎

腾讯云Carson_Ho的开发笔记Android:你知道该如何正确获取View坐标位置的方法吗? - 云+社区 - 腾讯云

以上是关于Android:获取View视图在屏幕绝对位置和坐标方法总结的主要内容,如果未能解决你的问题,请参考以下文章

android应用程序中获取view的位置

android应用程序中获取view的位置

图解Android View的scrollTo(),scrollBy(),getScrollX(), getScrollY()

图解Android View的scrollTo(),scrollBy(),getScrollX(), getScrollY()

图解Android View的scrollTo(),scrollBy(),getScrollX(), getScrollY()

Android 获得控件在屏幕中的坐标 - 总结