Reputation: 31
i want to detect whether Arabic keyboard is installed in device or not. how it is possible. i want to check if Arabic keyboard is available other wise give link to install it first.
Upvotes: 0
Views: 78
Reputation: 1976
InputMethodManager manager = (InputMethodManager)getApplicationContext().getSystemService(INPUT_METHOD_SERVICE); List InputMethods = manager.getInputMethodList();
This will give list of input method in device. -check for Arabic keyboard packagename/.classname
Upvotes: 1