LoginSignup
16
17

More than 5 years have passed since last update.

Androidアプリでキーボードを非表示にする

Last updated at Posted at 2014-09-09

Androidアプリでキーボードを非表示にする場合は以下のようにします。

if (getCurrentFocus() != null) {
    InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
    imm.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);
}

hideSoftInputFromWindowメソッドの第二引数をInputMethodManager.HIDE_IMPLICIT_ONLYにすると、予測変換の部分のみ非表示にすることができます。

※以下のサイトを参考にしました。
ソフトキーボードを非表示にする « Tech Booster
キーボードを非表示にする - Android 1000 tips
Android キーボードを消す方法

16
17
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
16
17