I have an application where I would like to warn the user if they are not using the default Android softkeyboard. (i.e. they are using Swype or some thing else).

How can I check which input method they currently have selected?

link|improve this question
feedback

2 Answers

up vote 5 down vote accepted

You can get a default IME, use:

Settings.Secure.getString(getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD);
link|improve this answer
This one works just fine! Nice one dude! – Cristian Jan 11 '11 at 4:42
feedback

InputMethodManager has getEnabledInputMethodList(). You get an InputMethodManager from getSystemService() in your Activity.

link|improve this answer
I saw that and that returns a list of input methods that are available to the user - but I can't seem to figure out how to determine which one is currently selected. – jkhouw1 Apr 30 '10 at 14:09
Unfortunately, the only thing I can think to do now is check the length of the List returned by getEnabledInputMethodList and if >2, warn them that they may have a problem if they're not using the default IME. Anyone have any other pointers/ideas? – jkhouw1 Apr 30 '10 at 19:57
You might consider opening up a new SO question about the problem you think you will experience with users using Swype, and figure out how to fix that. After all, I suspect the range of "default IME" will expand as Android moves into other markets (e.g., TVs/set-top boxes). Hence, I would really recommend we figure out how to get it so you don't care what IME they're using. – CommonsWare Apr 30 '10 at 20:28
hmm - ok I can try that... – jkhouw1 Apr 30 '10 at 23:55
Actually - I fixed the problem I was having with swype and a TextWatcher on an EditText However, I still need to determine if they are using the default keyboard or not. (Its for a game where speed of entry matters and you can "Cheat" with swype type keyboards. – jkhouw1 May 1 '10 at 0:34
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.