M.satti
M.satti

Reputation: 31

Android keyboard input method

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

Answers (1)

Parth
Parth

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

Related Questions