- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
onSingleTapConfirmed
和有什么区别和 onSingleTapUp
在 GestureDetector.SimpleOnGestureListener
?其中哪一项与 onClick
相似方法?
最佳答案
根据 GestureDetector.SimpleOnGestureListener
文件,
onSingleTapConfirmed
Notified when a single-tap occurs.
Unlike
onSingleTapUp(MotionEvent)
, this will only be called after the detector is confident that the user's first tap is not followed by a second tap leading to a double-tap gesture.
onSingleTapUp
Notified when a tap occurs with the up MotionEvent that triggered it.
onClick
方法类似于
onSingleTapConfirmed
.
关于android - onSingleTapConfirmed 和 onSingleTapUp 的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28816251/
我有一个带有 GestureDetector 的 Xamarin Android 应用程序。在我的设备 (Sony Xperia S5303) 和模拟器中它运行良好。然而,在三星 Galaxy 平板电
onSingleTapConfirmed 和有什么区别和 onSingleTapUp在 GestureDetector.SimpleOnGestureListener ?其中哪一项与 onClick
我创建了一个带有 onTouchListener 和手势检测器的自定义组件,我将自定义组件放在 MainActivity 的 xml 文件中,该文件还具有 onTouchEvent 和手势检测器。我想
单击时 onSingleTapUp 函数正确执行,而双击时 onSingleTapUp 和 onDoubleTap 都执行。 mGestureDetector = new GestureDetecto
我有一个覆盖整个屏幕的 View (比方说 ParentView),以及仅覆盖其中一部分的子内部 View ChildView。我想让 ChildView 响应 onSingleTapUp(),而 P
我是一名优秀的程序员,十分优秀!