1、弹出键盘
fun showKeyboard() {
edit.setFocusable(true);
edit.setFocusableInTouchMode(true)
edit.requestFocus();
var imm = getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager
imm.showSoftInput(edit, 0)
}
2、收起键盘
fun hideKeyboard() { dit.setFocusable(false) edit.setFocusableInTouchMode(false) var imm = getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager imm.hideSoftInputFromWindow(edit.windowToken, 0) }
原文:https://www.cnblogs.com/haihai88/p/11325256.html