0

可能重复:
用 android 捕获按键

当用户按下 Enter 按钮键盘时,我想执行一些操作。我怎样才能得到这个动作?

4

2 回答 2

0

使用以下代码:

public boolean onKey(View v, int keyCode, KeyEvent event) {
    switch (keyCode) {
        case KeyEvent.KEYCODE_ENTER:
         /* This is a sample for handling the Enter button */
      return true;
    }
    return false;
}

并实施YourView.setOnKeyListener(this);

这是直接取自 这篇文章。

于 2012-11-06T16:47:20.473 回答
0

您也可以使用 InputFilter:

InputFilter filter = new InputFilter()
{
    public CharSequence filter(CharSequence source, int start, int end,
    Spanned dest, int dstart, int dend)
    {
        for (int i = start; i < end; i++)
        {
            if (source.charAt(i) == '\n')
            {
                // Add whatever you want;
            }
        }
        return null;
    }
};
于 2012-11-06T18:51:42.537 回答