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;
}
});
时间: 2024-10-17 00:41:24