如何在android应用程序中使用JNI创建消息队列
我是android应用程序开发的新手,我想创建两个服务,这些服务必须使用消息队列相互通信。
为此,我必须使用 JNI 调用低级内核函数。如何实现这一目标。
任何帮助将不胜感激。谢谢
I am new to android app development, I want to create two services, these services must communicate with each other by using a message queue.
For this purpose, i have to call low-level kernel functions by using JNI. How to achieve this.
Any help will be appreciated. Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么需要 JNI 来做到这一点?服务可以按照 Android 文档中的建议通过 Intent 和 startService() 进行通信。或者,您可以使用 Messenger 类。
Why do you need JNI to do this? Services can communicate via intents and startService() as recommended in the Android documentation. Alternatively, you can use the Messenger class.