EditView
などで文字列を入力後などに、キーボードを非表示にしたい場合の方法メモ。
class ContentFragment : Fragment() {
private fun hideKeyboard() {
val view = activity.currentFocus
if (view != null) {
val manager = activity.getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager
manager.hideSoftInputFromWindow(view.windowToken, 0)
}
}
}