Android键盘中的自定义操作按钮

时间:2013-06-19 08:53:29

标签: android xml android-edittext

我试图让ENTER上的自定义操作工作。这是我的EditText

的xml
<EditText
    android:id="@+id/editor"
    android:singleLine="true"
    android:inputType="text"
    android:imeActionId="@+id/submit_action"
    android:imeActionLabel="Submit"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:paddingTop="15dp" />

但是,当我尝试捕获该操作时,我发现操作ID为5而不是submit_action中的任何内容

mNameEditor.setOnEditorActionListener(new OnEditorActionListener() {
    @Override
    public boolean onEditorAction(TextView arg0, int actionId, KeyEvent event) {
        Toast.makeText(getActivity(), Integer.toString(actionId) ,Toast.LENGTH_LONG).show();
        if (event != null && event.getAction() != KeyEvent.ACTION_DOWN) {
            return false;
        } else if(actionId == R.id.submit_action){
            //do something
        }
        return true;
    }    
});

1 个答案:

答案 0 :(得分:0)

您可以使用以下方法:

public boolean onKey(View v, int keyCode, KeyEvent event) {
    // TODO Auto-generated method stub
    if (event.getAction() == KeyEvent.ACTION_DOWN) {
        switch (keyCode) {
        case KeyEvent.KEYCODE_DPAD_CENTER:
        case KeyEvent.KEYCODE_ENTER:

            InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
            imm.hideSoftInputFromWindow(v.getApplicationWindowToken(), 0);

            return true;

        default:
            break;
        }
    }
    return false;
}

在这个例子中,我试图关闭IME,但是当按下ENTER键时你可以做任何你想做的事。希望它有所帮助。