Android GestureOverlay 具有垂直和水平描边

发布于 2024-10-14 01:25:50 字数 189 浏览 5 评论 0原文

我目前正在尝试实现 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

冷血 2024-10-21 01:25:51

您的 GestureOverlayView 使用哪个处理程序?
OnGesturePerformedListener 还是 OnGestureListener?
如果您使用 OnGesturePerformedListener,您将受到屏幕方向的限制。您应该使用 OnGestureListener 并实现它的 onGestureEnded 函数。无论屏幕方向如何,它都会为您提供执行的手势:

@Override
    public void onGestureEnded(GestureOverlayView overlay, MotionEvent event) {
        Gesture gesture = overlay.getGesture();
        // Here you can check it against your saved gestures in the gesture library

    }

干杯
阿明

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:

@Override
    public void onGestureEnded(GestureOverlayView overlay, MotionEvent event) {
        Gesture gesture = overlay.getGesture();
        // Here you can check it against your saved gestures in the gesture library

    }

Cheers
Amin

无法回应 2024-10-21 01:25:50

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文