What actually happens if I return false in a OnTouchListener?(如果我在 OnTouchListener 中返回 false,实际会发生什么?)
问题描述
我正在创建一个需要 SurfaceView
来实现 OnTouchListener
的游戏.在游戏过程中,我想暂停监听器一段时间.我尝试从 onTouch()
方法返回 false,但该方法仍然继续执行.有没有其他方法可以让监听器暂停有时?任何人请解释从 onTouch()
返回 false 的实际含义?
I am creating a game that requires a SurfaceView
to implement OnTouchListener
. During the game I want to pause the Listener for some specific time.I tried returning false from the onTouch()
method , but still the method keeps executing.Is there any other way to have the listener paused for sometime? And anyone please explain what returning false from onTouch()
actually mean?
推荐答案
从查看文档:
Returns
True if the listener has consumed the event, false otherwise.
如果你返回 true
,你告诉 android 新闻已经处理好了.忘了它.
If you return true
you tell android that the press is taken care of. Forget it.
如果您返回 false
,您基本上是在说不是我的问题,其他人将不得不处理此点击".然后 android 会将事件传递给其他视图,这些视图可能在您的视图之下.
If you return false
you basically say "Not my problem, Someone else will have to take care of this click". Then android will pass the event down to other views, which could be under your view.
这篇关于如果我在 OnTouchListener 中返回 false,实际会发生什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如果我在 OnTouchListener 中返回 false,实际会发生什么?
基础教程推荐
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 降序排序:Java Map 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01