Android监听键盘上的确定键
发布时间:2015-06-05 来源:查字典编辑
摘要:mETCommentContent.setOnEditorActionListener(newOnEditorActionListener(...
mETCommentContent.setOnEditorActionListener(new OnEditorActionListener() { @Override public boolean onEditorAction(TextView v, int actionId, KeyEvent event) { if (actionId == EditorInfo.IME_ACTION_DONE) { hideSoftInput(); } return false; } });