我无法点击位于页面底部的提交按钮。键盘不会消失并阻止提交按钮。 我实现了我在这里找到的编码,但它没有用。
InputMethodManager inputMgr = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
Amount = (EditText) findViewById(R.id.etMSAmount);
Amount.clearFocus();
inputMgr.hideSoftInputFromWindow(Amount.getWindowToken(), InputMethodManager.HIDE_IMPLICIT_ONLY);
P / S:编辑文本字段是数字类型,整个页面只有一个编辑文本字段