MotionEvent.FlagWindowIsObscured 字段

定义

注意

This constant will be removed in the future version. Use Android.Views.MotionEventFlags enum directly instead of this field.

此标志指示接收此运动事件的窗口部分或完全被它上方的另一个可见窗口遮盖,并且事件直接通过遮盖区域传递。

[Android.Runtime.Register("FLAG_WINDOW_IS_OBSCURED")]
[System.Obsolete("This constant will be removed in the future version. Use Android.Views.MotionEventFlags enum directly instead of this field.", true)]
public const Android.Views.MotionEventFlags FlagWindowIsObscured = 1;
[<Android.Runtime.Register("FLAG_WINDOW_IS_OBSCURED")>]
[<System.Obsolete("This constant will be removed in the future version. Use Android.Views.MotionEventFlags enum directly instead of this field.", true)>]
val mutable FlagWindowIsObscured : Android.Views.MotionEventFlags

字段值

Value = 1

实现

属性

注解

此标志指示接收此运动事件的窗口部分或完全被它上方的另一个可见窗口遮盖,并且事件直接通过遮盖区域传递。

安全敏感应用程序可以检查此标志,以确定恶意应用程序可能掩盖其部分内容的情况,以误导用户或劫持触摸。 适当的响应可能是删除可疑接触,或采取其他预防措施来确认用户的实际意图。

适用于 . 的 android.view.MotionEvent.FLAG_WINDOW_IS_OBSCUREDJava 文档

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

适用于