当我在某个应用中有多个活动时,如何在android中退出该应用?
我尝试了finish()
和System.exit(0)
,但没有一个起作用。它的作用只是转到上一个活动。
这是我的代码:
boolean insertionStatus = mydb.DataInsertion(email, password, username, fathername, contact, birthday, user_address);
if (insertionStatus)
{
alert.setTitle("Registration Status");
alert.setMessage("You are successfully registered!\nDo you want to login now?");
alert.setPositiveButton("Yes", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
Intent intent = new Intent(RegistrationActivity.this, LoginActivity.class);
startActivity(intent);
}
});
alert.setNegativeButton("No", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
System.exit(0);
}
});
alert.create().show();
答案 0 :(得分:2)
调用 finishAffinity(); 方法以完成之前的所有活动。
finishAffinity();