Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以使用将启动另一个 android 应用程序的 android NDK 编写 C 代码?(例如启动谷歌浏览器)
到目前为止,我只发现了有关如何为 Java SDK 执行此操作的提示,而不是 NDK。
您将使用 Android 的 Java 端的 Intent。所有 Android 应用程序都通过 Dalvik/Java 端运行。由于您已经通过 NativeActivity 或自定义实现使用 Java 端,因此设置 JNI 调用来触发 Intent 应该不会太难。