は今、私はキーボードの外softkeyboardたときに、ユーザーのタッチを隠そう:アクティビティのwindowTokenを表示せずに取得するには?
((InputMethodManager) getSystemService(INPUT_METHOD_SERVICE))
.hideSoftInputFromWindow(editView.getWindowToken(),
InputMethodManager.HIDE_NOT_ALWAYS);
私はそれを見ることなく、getWindowTokenすることが可能であるので、もし、私の基本アクティビティクラスにロジックを入れたいですか?
を使用し、これはタイプミス "getgetWindowToken()" とは? – MKJParekh
[EditTextの外をクリックしてアンドロイド上でソフトキーボードを隠す方法は?](http://stackoverflow.com/questions/4165414/how-to-hide-soft-keyboard-on-android-after-clicking-outside -edittext) – Reno
'InputMethodManager inputManager =(InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);' 'inputManager.hideSoftInputFromWindow(findViewById(android.R.id.content).getWindowToken()、InputMethodManager.HIDE_NOT_ALWAYS);' –