Android 软件盘回车键修改

在android中对EditText实现软件盘监听,当按下软键盘的时候,响应完成、发送、搜索或者其他事件。
1.在布局文件EditText中添加属性
android:singleLine="true"
android:imeOptions="actionSearch"
其中
把EditText的Ime Options属性设置成不同的值,Enter键上可以显示不同的文字或图案。
actionNone : 回车键,按下后光标到下一行
actionGo : Go,
actionSearch : 一个放大镜
actionSend : Send
actionNext : Next
actionDone : Done,隐藏软键盘,即使不是最后一个文本输入框 然后在代码中设置对他的监听
editText.setOnEditorActionListener(new TextView.OnEditorActionListener() {
            @Override
            public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
                if (actionId == EditorInfo.IME_ACTION_SEARCH) {
                    Toast.makeText(MainActivity.this,"1111",Toast.LENGTH_SHORT).show();
//                    performSearch();
                    return true;
                }
                Toast.makeText(MainActivity.this,"222",Toast.LENGTH_SHORT).show();
                return false;
            }
        });


你可能感兴趣的:(android,键盘)