Android C++手势代码

发布于 2024-10-15 01:51:35 字数 50 浏览 2 评论 0原文

是否可以获取适用于 Android 和 C++ 的手势代码?如果可以的话,该怎么办呢?

Is it possible to get gesture code to work with Android and C++? If so, how can it be done?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

凌乱心跳 2024-10-22 01:51:35

到目前为止,最简单的方法是传递 MotionEvent 中的信息并/或通过 JNI GestureDetector 到您的本机代码。具体如何执行此操作取决于您,但基本原理与本机代码和 Java 代码之间的任何其他通信没有什么不同。

如果您询问是否可以在不通过 JNI 的情况下获取 MotionEvent,即使有可能,也比其价值要麻烦得多。您可以(并且可能应该)使用像 SWIG 这样的工具来避免手动编写 JNI 包装器代码的痛苦。

The easiest way by far would be to pass the information from your MotionEvent and/or GestureDetector to your native code via the JNI. Exactly how you do this is up to you, but the basic principle is no different than that of any other communication between native and Java code.

If you are asking if you can acquire MotionEvents without going via the JNI, if it's even possible, it's far more hassle than it's worth. You could (and probably should) use a tool like SWIG to avoid the pain of writing JNI wrapper code manually.

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