LoginSignup
6
11

More than 5 years have passed since last update.

画面遷移時にソフトキーボードを非表示

Posted at

EditTextにフォーカスがあたると、ソフトキーボードが表示されるが
その状態で画面遷移すると、ソフトキーボードが表示されたままになってしまう。

それを解消するため、画面遷移前にonStop()にて
ソフトキーボードを非表示にしてしまえば、上記が解消される。

@Override
public void onStop() {
    super.onStop();

    //ソフトキーボードを非表示
    if ( getView()  != null ) {
        InputMethodManager imm =
                (InputMethodManager) getActivity().getSystemService(Context.INPUT_METHOD_SERVICE);
        imm.hideSoftInputFromWindow( getView().getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS );
        getView().clearFocus();
    }

}

※上記はFragmentの場合

6
11
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
6
11