gpt4 book ai didi

android - 输入事件如何关联到 View ?

转载 作者:行者123 更新时间:2023-11-29 00:42:33 24 4
gpt4 key购买 nike

Android 应用程序如何与 View 关联并输入事件,具体说是哪个类和哪个方法?

最佳答案

当屏幕被触摸时,MotionEvent 被分派(dispatch)到最顶层的 View (Activity 的内容 View )。然后,内容 View 对区域进行一些计算,并确定它是否具有能够接收 MotionEvent 的子级,并通过 onTouchEvent(MotionEvent) 将 MotionEvent 传递给 MotionEvent 所在的 View 。这在 View 层次结构中重复,直到 View 返回 true 或 MotionEvent 返回到顶层 View ,此时它决定处理或丢弃它。引用:

View#onTouchEvent(MotionEvent)

ViewGroup#onInterceptTouchEvent(MotionEvent)

关于android - 输入事件如何关联到 View ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8528436/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com