软键盘小记Android:imeOptions

1.actionUnspecified 未指定,对应常量EditorInfo.IME_ACTION_UNSPECIFIED.
2.actionNone 没有动作,对应常量EditorInfo.IME_ACTION_NONE
3.actionGo 去往,对应常量EditorInfo.IME_ACTION_GO
4.actionSearch 搜索,对应常量EditorInfo.IME_ACTION_SEARCH
5.actionSend 发送,对应常量EditorInfo.IME_ACTION_SEND
6.actionNext 下一个,对应常量EditorInfo.IME_ACTION_NEXT
7.actionDone 完成,对应常量EditorInfo.IME_ACTION_DONE

android键盘中的enter键图标是可以用EditText的android:imeOptions标签变更的。
显示search图标需要设置为android:imeOptions="actionSearch",android:inputType="text"将键盘设置为文字输入布局
则键盘中search按钮正常出现。
捕捉编辑框软键盘enter事件:
1)setOnKeyListener
2)OnEditorActionListener

实现android按下回车键便隐藏输入键盘,有两种方法:
1)如果布局是多个EditText,为每个EditText控件设置android:singleLine=”true”,弹出的软盘输入法中回车键为next,直到最后一个获取焦点后显示为Done,点击Done后,软盘输入键盘便隐藏。或者将EditText的imeOptions属性设置android:imeOptions=”actionDone”,则不管是不是最后一个EditText,点击回车键即隐藏输入法。
2)监听Enter的事件,编写Enter的事件响应。设置文本框的OnKeyListener,当keyCode ==KeyEvent.KEYCODE_ENTER的时候,表明Enter键被按下,就可以编写自己事件响应功能了
emailPwd.setOnKeyListener(View.OnKeyListener(){
onKey(View v, keyCode, KeyEvent event) {
(keyCode == KeyEvent.){

        InputMethodManager imm = (InputMethodManager)v.getContext().getSystemService(Context.);

        (imm.isActive()){

            imm.hideSoftInputFromWindow(v.getApplicationWindowToken(), );

        }

        ;

    }

    ;

}
});

在某些时候用户填写完毕。就该直接触发接下来的点击事件:
/**
*
* @param et editText
* @param view 需要触发事件的view IME_ACTION_SEND || paramInt == EditorInfo.IME_ACTION_DONE || paramInt == EditorInfo.IME_ACTION_NEXT
* 出发view 的点击事件
* performClick() 模拟人的手去触发点击时间
*/
public static void setEtActionClick(EditText et, final View view) {
et.setOnEditorActionListener(new TextView.OnEditorActionListener() {

        @Override
        public boolean onEditorAction(TextView paramTextView, int paramInt,
                                      KeyEvent paramKeyEvent) {
            if (paramInt == EditorInfo.IME_ACTION_SEND || paramInt == EditorInfo.IME_ACTION_DONE || paramInt == EditorInfo.IME_ACTION_NEXT)// || (paramKeyEvent != null && paramKeyEvent.getKeyCode() == KeyEvent.KEYCODE_ENTER))
                return view.performClick();
            return false;
        }

    });
}

你可能感兴趣的:(软键盘小记Android:imeOptions)