可能重复:
用 android 捕获按键
当用户按下 Enter 按钮键盘时,我想执行一些操作。我怎样才能得到这个动作?
使用以下代码:
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);
这是直接取自 这篇文章。
您也可以使用 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;
}
};