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项目。我创建了一个本机edittext。我想在其他android c++项目中使用本机jni函数来显示c++中的edittext。每当我添加jni和edittext的头文件时,编译器都找不到。
你能建议我吗?如何在我自己的项目中添加本机编辑文本项目以及如何在 c++ 中使用 jni 函数。你的建议会有所帮助。
获取您想要共享的代码并将其放入它自己的编译库中。然后你可以在 android 项目和 c++ 项目中引用它,并在两者中使用代码。
如何在 C++ 中创建和使用静态库
如何在 C++ 中添加库?