Nếu bạn không muốn sử dụng xml, hãy tạo Tiện ích mở rộng Kotlin để ẩn bàn phím
// In onResume, call this
myView.hideKeyboard()
fun View.hideKeyboard() {
val inputMethodManager = context.getSystemService(INPUT_METHOD_SERVICE) as InputMethodManager
inputMethodManager.hideSoftInputFromWindow(windowToken, 0)
}
Các lựa chọn thay thế dựa trên trường hợp sử dụng:
fun Fragment.hideKeyboard() {
view?.let { activity?.hideKeyboard(it) }
}
fun Activity.hideKeyboard() {
// Calls Context.hideKeyboard
hideKeyboard(currentFocus ?: View(this))
}
fun Context.hideKeyboard(view: View) {
view.hideKeyboard()
}
Cách hiển thị bàn phím mềm
fun Context.showKeyboard() { // Or View.showKeyboard()
val inputMethodManager = context.getSystemService(INPUT_METHOD_SERVICE) as InputMethodManager
inputMethodManager.toggleSoftInput(SHOW_FORCED, HIDE_IMPLICIT_ONLY)
}
Phương pháp đơn giản hơn khi đồng thời yêu cầu tập trung vào một edittext
myEdittext.focus()
fun View.focus() {
requestFocus()
showKeyboard()
}
Đơn giản hóa tiền thưởng:
Xóa yêu cầu cho từng sử dụng getSystemService
: Thư viện Splitties
// Simplifies above solution to just
inputMethodManager.hideSoftInputFromWindow(windowToken, 0)
android:windowSoftInputMode="stateHidden"