私が使用することをお勧めしますLifecycleObserverの一部であり、ライフサイクル対応のコンポーネントとの取扱いのライフサイクルのアンドロイドJetpackのを。
フラグメント/アクティビティが表示されたらキーボードを開閉したいのですが。まず、EditTextに2つの拡張関数を定義します。プロジェクトのどこにでも配置できます。
fun EditText.showKeyboard() {
requestFocus()
val imm = context.getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager
imm.showSoftInput(this, InputMethodManager.SHOW_IMPLICIT)
}
fun EditText.hideKeyboard() {
val imm = context.getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager
imm.hideSoftInputFromWindow(this.windowToken, 0)
}
次に、Activity / Fragmentがに到達したとき、onResume()
またはに到達したときにキーボードを開閉するLifecycleObserverを定義しますonPause
。
class EditTextKeyboardLifecycleObserver(private val editText: WeakReference<EditText>) :
LifecycleObserver {
@OnLifecycleEvent(Lifecycle.Event.ON_RESUME)
fun openKeyboard() {
editText.get()?.postDelayed({ editText.get()?.showKeyboard() }, 100)
}
@OnLifecycleEvent(Lifecycle.Event.ON_PAUSE)
fun closeKeyboard() {
editText.get()?.hideKeyboard()
}
}
次に、次の行をフラグメント/アクティビティのいずれかに追加すると、LifecycleObserverをいつでも再利用できます。例えばフラグメントの場合:
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
// inflate the Fragment layout
lifecycle.addObserver(EditTextKeyboardLifecycleObserver(WeakReference(myEditText)))
// do other stuff and return the view
}