0

我最近购买了Professional Android 4 Application Development,并且我有一个关于第一个“待办事项列表”项目的问题(用户在 EditText 中输入内容,按 Enter 键,然后输入的文本被添加到 ListView):

一切正常,但是一旦我将目标 SDK 设置为 16(4.1) 或更高版本,当我按下回车键时 onKeyListener 就不会触发。为什么会这样,有没有办法解决这个问题?

myEditText.setOnKeyListener(new View.OnKeyListener() {
    public boolean onKey(View v, int keyCode, KeyEvent event) {
        if (event.getAction() == KeyEvent.ACTION_DOWN)
            if((keyCode == KeyEvent.KEYCODE_DPAD_CENTER) || (keyCode == KeyEvent.KEYCODE_ENTER)) {
                todoItems.add(0, myEditText.getText().toString());
                aa.notifyDataSetChanged();
                myEditText.setText("");
                return true;
            }
        return false;
    }
});

谢谢 :)

4

1 回答 1

0

我认为你应该使用setOnEditorActionListener.

EditText在 XML 布局中:

<EditText
    android:id="@+id/myEditText"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:imeOptions="actionDone" />

你的行动:

EditText myEditText = (EditText) findViewById(R.id.myEditText);
myEditText
        .setOnEditorActionListener(new EditText.OnEditorActionListener() {

            @Override
            public boolean onEditorAction(TextView view, int actionId,
                    KeyEvent event) {

                if (actionId == EditorInfo.IME_ACTION_DONE) {
                    // Your action
                }
                return true;
            }
        });

您可以使用TextWatcher

EditText myEditText = (EditText) findViewById(R.id.myEditText);
myEditText.addTextChangedListener(new TextWatcher() {

    @Override
    public void onTextChanged(CharSequence s, int start, int before,
            int count) {
        if (s.toString().substring(start).contains("\n")) {
            // YOur action
        }
    }

    @Override
    public void beforeTextChanged(CharSequence s, int start, int count,
            int after) {
        // empty
    }

    @Override
    public void afterTextChanged(Editable s) {
        // empty
    }
});
于 2013-08-10T22:53:07.567 回答