Android监听键盘上的确定键等

来源:互联网 发布:百度云会员激活码淘宝 编辑:程序博客网 时间:2024/04/28 04:37
mETCommentContent.setOnEditorActionListener(new OnEditorActionListener() {@Overridepublic boolean onEditorAction(TextView v, int actionId, KeyEvent event) {if (actionId == EditorInfo.IME_ACTION_DONE) {hideSoftInput();}return false;}});


原创粉丝点击