我正在尝试隐藏在底部工作表对话框片段中单击的底部的软键。我已经试过了:
try {
val view: View? = requireActivity().currentFocus
if (view != null) {
(requireActivity().getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager).hideSoftInputFromWindow(
view.windowToken,
0)
}
} catch (e: Exception) {
Logger.e(TAG, "can't hide the softKey --> ${e.message}", e)
}
购买它在底部工作表对话框中不起作用