android 把虚拟键盘的回车改为搜索功能(亲试)

来源:互联网 发布:mac地址修改器 wi10 编辑:程序博客网 时间:2024/05/18 03:35
 //把虚拟键盘的回车改成搜索        searchEditText.setImeOptions(EditorInfo.IME_ACTION_SEND);        searchEditText.setOnEditorActionListener(new TextView.OnEditorActionListener() {@Overridepublic boolean onEditorAction(TextView v, int actionId, KeyEvent event) {// TODO Auto-generated method stubif (actionId==EditorInfo.IME_ACTION_SEND ||(event!=null&&event.getKeyCode()== KeyEvent.KEYCODE_ENTER)) {                //do something;              dealWithSearch();return true;             }           return false;}});
dealWithSearch()方法是点击搜索触发的事件实现内容。
0 0
原创粉丝点击