How to open this dialog from my application to change the keyboard.
Asked
Active
Viewed 541 times
1

Nitesh Shrivas
- 105
- 1
- 10
-
3Possible duplicate of [Switch keyboard profile programmatically](https://stackoverflow.com/questions/11036435/switch-keyboard-profile-programmatically) – Chris Stillwell Dec 19 '17 at 15:07
-
1@ChrisStillwell Thanks – Nitesh Shrivas Dec 19 '17 at 15:10
1 Answers
3
InputMethodManager imeManager = (InputMethodManager)
getApplicationContext().getSystemService(INPUT_METHOD_SERVICE);
imeManager.showInputMethodPicker();

Robert
- 5,278
- 43
- 65
- 115

BODDEPALLI AMMINAIDU
- 44
- 3