ボタンのクリックイベントでキーボードを非表示にしたい。どんな助けでもいただければ幸いです
質問する
1352 次
2 に答える
11
仮想キーボードを非表示にするには:
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(editView.getWindowToken(), 0);
于 2013-03-15T08:35:59.483 に答える
3
InputMethodManager inputManager = (InputMethodManager)
getSystemService(Context.INPUT_METHOD_SERVICE);
inputManager.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(),
InputMethodManager.HIDE_NOT_ALWAYS);
これは、onClick(View v)イベントの直後に配置します。必要があるimport android.view.inputmethod.InputMethodManager;
ボタンをクリックすると、キーボードが非表示になります。
于 2013-03-15T08:37:22.180 に答える