Android C++手势代码
是否可以获取适用于 Android 和 C++ 的手势代码?如果可以的话,该怎么办呢?
Is it possible to get gesture code to work with Android and C++? If so, how can it be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
到目前为止,最简单的方法是传递 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.