- This returns a boolean to indicate whether your listener consumes this event. The important thing is that this event can have multiple actions that follow each other. So, if you returnfalsewhen the down action event is received, you indicate that you have not consumed the event and are also not interested in subsequent actions from this event. Thus, you will not be called for any other actions within the event, such as a finger gesture, or the eventual up action event.onTouch()
它将返回一个布尔类型的值来表明你的监听器是否消费了这个事件。重要的是这个事件可以有多个相关的动作。因此,如果在按下动作事件被接收时你返回false,这就表明你没有消费此事件而且对此事件后来的一些列动作都不感兴趣。因此,所有在事件中的其他的动作也不会被调用,例如:手指手势,或最后的抬起动作事件。
总结:这段文字的大意是说,如果在down action 事件被接收时你返回了false,那么所有依赖于down action的动作都不会被执行。
本文详细解释了onTouch()事件的工作原理,特别是当downaction事件被接收时返回false的影响。指出这种情况下,后续所有依赖于初始downaction的动作,如手指手势和抬起动作等,将不会被执行。
1万+

被折叠的 条评论
为什么被折叠?



