This commit is contained in:
kunfei 2023-04-18 19:57:58 +08:00
parent 7bf0a00b14
commit 52ddef1a3c

View File

@ -42,7 +42,7 @@ fun View.hideSoftInput() = run {
inputMethodManager.hideSoftInputFromWindow(this.windowToken, 0) inputMethodManager.hideSoftInputFromWindow(this.windowToken, 0)
} }
fun View.showSoftInput() = run { fun EditText.showSoftInput() = run {
requestFocus() requestFocus()
inputMethodManager.showSoftInput(this, InputMethodManager.RESULT_SHOWN) inputMethodManager.showSoftInput(this, InputMethodManager.RESULT_SHOWN)
} }