I have multiple keyboards on my device, how can I switch between the different keyboards programmatically?
(I don't want to simply open or close the soft keyboard as in: android - show soft keyboard on demand. I need to switch to the default keyboard.)
Edit: add code
If i try below code, i switch to current keyboard:
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.toggleSoftInput( 0, 0);
But i need switch to default keyboard.
Please get me any idea to switch to default keyboard?