Android之输入内容监听回车键【Editor】

来源:互联网 发布:旅游网络销售范围 编辑:程序博客网 时间:2024/06/06 01:43
2.输入内容时按下回车键时监听


username.setOnEditorActionListener(new OnEditorActionListener() {


@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
// TODO Auto-generated method stub
Toast.makeText(MainActivity.this, "onEditorAction",1).show();
return false;
}
});
0 0