0
0

More than 1 year has passed since last update.

AndroidのEditTextからフォーカスを外す方法

Posted at

概要

AndroidのEditTextで入力を確定したあともフォーカスがそのまま残ることがあった。
入力確定後はEditTextからフォーカスは外れてほしい。
そのためAndroidでEditTextからフォーカスを外す方法を記載する。
言語はKotlin

フォーカスを外す

以下のコードを入力確定時のイベントで実行するようにすることでフォーカスが外れるようにすることができる。

val parent = parent as View
parent.isFocusable = true
parent.isFocusableInTouchMode = true
parent.requestFocus()
0
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
0
0