我在我的程序中创建了我的 ActionListener 中的返回按钮我提出了我想要返回到它的活动,但是当我按下它时我会重新启动活动。但我希望他具有与 Android 的按钮背面相同的行为。现在我用
final Button boutton = (Button) findViewById(R.id.back);
boutton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
Intent intent2 = new Intent(ResultActivity.this,
AppList.class);
startActivity(intent2);
}
});
}