LoginSignup
3
0

More than 5 years have passed since last update.

アプリを起動したら前の画面のキーボードが出てしまう際の対処法

Posted at

前の画面などでEdittextなどを実装してそれに重なるfragmnetでもアプリを復帰するたびにキーボードが出てしまう

対処法

前のfragmentのEdittextにfocusが当たったままなのが原因。

ResultFragment.kt
editText.isFocus = false

でfocusを外してあげる

この状態で前のfragmnetに戻ったらfocusがなかったりcursorが出なかったりするので

SearchFragment.kt
editText.isFocus = true
editText.isFocusableInTouchMode = true

としてあげる

3
0
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
3
0