View.GetLocationInWindow(Int32[]) 方法

定义

在包含视图的窗口坐标空间中获取此视图的坐标,而不考虑系统修饰。

[Android.Runtime.Register("getLocationInWindow", "([I)V", "GetGetLocationInWindow_arrayIHandler")]
public virtual void GetLocationInWindow (int[]? outLocation);
[<Android.Runtime.Register("getLocationInWindow", "([I)V", "GetGetLocationInWindow_arrayIHandler")>]
abstract member GetLocationInWindow : int[] -> unit
override this.GetLocationInWindow : int[] -> unit

参数

outLocation
Int32[]

一个存储视图坐标的双元素整数数组。 x 坐标位于索引 0;索引 1 处的 y 坐标。

属性

注解

在包含视图的窗口坐标空间中获取此视图的坐标,而不考虑系统修饰。

在多窗口模式下,坐标空间的原点是包含视图的窗口左上角。 在全屏模式下,源是设备屏幕的左上角。

在多屏方案中,如果应用跨越多个屏幕,则坐标空间也会跨越多个屏幕。 但是,如果应用仅限于单个屏幕,则坐标空间仅包括运行应用的屏幕。

方法返回后,参数数组分别包含视图相对于视图的左边缘和上边缘的 x 和 y 坐标。

适用于 . 的 android.view.View.getLocationInWindow(int[])Java 文档

本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。

适用于