Hi,
If I wanted to open the keyboard picker in Java, I’d use this…
InputMethodManager imeManager = (InputMethodManager) getApplicationContext().getSystemService(INPUT_METHOD_SERVICE);
imeManager.showInputMethodPicker();
… and I see that Unity has several things in its scripting toolbox that look like they could execute this directly. But I can’t figure out how to use them.
Any suggestions? This is for a kiosk and I’d like to execute the above command so the user can choose the keyboard they want to use.
Thank you,
-Chilton