I am facing some issues in calling the Android soft keyboard from a C++ file. I have a project in C++ and I need to show and use the native soft keyboard in some screens. I am compiling all the code with NDK.
Can anybody provide a suggestion on how to use the soft keyboard in a native / C++ application ?
Thanks in advance for your help.
Regards,
Maidul
I am facing some issues in calling the Android soft keyboard from a C++
Share
1) Create a method in Java to show the virtual keyboard like this: How to show virtual keypad in an android activity
2) Write a callback from C++ to Java using the following technique:
JNI – How to callback from C++ or C to Java?