在 Android 中如何显示来自 C 库的通知
完成中间件 C 库中的一些工作后,需要向通知栏显示一些通知。请建议是否有任何解决办法来显示通知。这个 C 库没有 GUI 部分。
After completion of some work in Middleware C library, Need to show few notifications to Notification bar. Please suggest if any work around to show the notifications.This C library doesnt have GUI part of it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
正如 Nitrex 所说,您需要通过 JNI 调用 Java 类中的方法:
在 C 中:
在您的“HelloJni”(请找到一个更好的名称;-))类中,您可以调用:
As Nitrex said, you would need to call the method in your Java class via JNI:
In C:
In your "HelloJni" (pls. find a better name ;-)) class, you can then call:
您必须使用 Java 本机接口代码 (JNI) 从 C 代码调用 java 方法。在线阅读有关 JNI 的信息,了解如何执行此操作。然后在java中,您可以将通知添加到通知栏。如果您无法弄清楚调用 java 方法,请在此处发表评论或发布新问题。
Your going to have to call java methods from your C code using Java Native Interface code (JNI). Read about JNI online for how you can do this. Then in java, you can add the notifications to the notification bar. If you can't figure out calling java methods, comment here or post a new question on it.