1

How to open this dialog from my application to change the keyboard.

enter image description here

Nitesh Shrivas
  • 105
  • 1
  • 10

1 Answers1

3
InputMethodManager imeManager = (InputMethodManager) 
getApplicationContext().getSystemService(INPUT_METHOD_SERVICE);
imeManager.showInputMethodPicker();
Robert
  • 5,278
  • 43
  • 65
  • 115