Android GestureOverlay 具有垂直和水平描边
我目前正在尝试实现 GestureOverlay 以捕获视图顶部的垂直和水平笔画。通常,此功能不被接受,因为它假设您正在可滚动视图之上应用。
使用 android:orientation 我可以将其设置为捕获其中一个,但我需要知道是否有一种方法可以覆盖它以接受两者,或者我是否陷入使用自定义手势适配器的困境。
谢谢你, 乔什·麦金尼
I am currently trying to implement GestureOverlay to capture both vertical and horizontal strokes on top my view. Typically this functionality is not accepted, as it assumes you are applying on top of a scrollable view.
Using android:orientation I am able to set it to capture one or the other, but I need to know if there is a way to override this to accept both, or if I am stuck using a custom gesture adapter.
Thank You,
Josh McKinney
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的 GestureOverlayView 使用哪个处理程序?
OnGesturePerformedListener 还是 OnGestureListener?
如果您使用 OnGesturePerformedListener,您将受到屏幕方向的限制。您应该使用 OnGestureListener 并实现它的 onGestureEnded 函数。无论屏幕方向如何,它都会为您提供执行的手势:
干杯
阿明
Which handler you are using with your GestureOverlayView?
OnGesturePerformedListener or OnGestureListener?
If you are using OnGesturePerformedListener you will be limited to the orientation of your screen. You should use OnGestureListener and implement the onGestureEnded function of it. It gives you the performed gesture regardless of the orientation of your screen:
Cheers
Amin
android:orientation="none" 选项是 Replicant 项目 的一部分,对于标准 Android 版本无效。简而言之,抱歉,您唯一的选择是水平和垂直。
The android:orientation="none" option is part of the Replicant project and isn't valid for standard Android builds. In short, the only options you have are horizontal and vertical, sorry.