I am trying to hide my soft keyboard from an InputMethodService, and it isn't working. Here is the code I am using in my onFinishInput() method:

InputMethodManager im = (InputMethodManager)
context.getSystemService(Context.INPUT_METHOD_SERVICE);
im.hideSoftInputFromWindow(mInputView.getWindowToken(), 0);

Any ideas?

link|improve this question

Maybe duplicate : stackoverflow.com/questions/1109022/… – Michaël Dec 14 '11 at 15:26
The difference is I am calling this from an InputMethodService - not an Activity – workInAFishBowl Dec 14 '11 at 15:29
@hsnepen, huh? You are calling hideSoftInputFromWindow ON the InputMethodManager. This call, presumably, is taking place inside of an Activity. Oh, and this is a duplicate for sure: stackoverflow.com/questions/1109022/… – LuxuryMode Dec 14 '11 at 15:37
I am extending the InputMethodService - not an Activity. This is NOT being called from inside of an Activity. It is being called inside an extension of a Service. – workInAFishBowl Dec 14 '11 at 15:44
feedback

1 Answer

up vote 0 down vote accepted

You can hide soft keyboard from manifest , Try this one:

android:windowSoftInputMode="stateHidden"
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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