软键盘搜索按钮绑定使用

来源:互联网 发布:惊雷算法 编辑:程序博客网 时间:2024/06/05 18:21

给EditText软键盘使用回车设置为搜索按钮

android:privateImeOptions="@string/search"

将EditText绑定软键盘
et_search.setOnEditorActionListener(new TextView.OnEditorActionListener() {            @Override            public boolean onEditorAction(TextView textView, int actionId, KeyEvent keyEvent) {                if (actionId == EditorInfo.IME_ACTION_SEARCH) {    //搜索操作                    return true;                }                return false;            }        });



原创粉丝点击