我想在进行新活动之前关闭堆栈中的所有活动。
这是我的代码
Intent i=new Intent(first.this,secondsct.class);
i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
//i.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
//i.addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
//i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(i);
finish();
但这不起作用。我之前尝试过,但现在没有。我不知道为什么。谁能知道可能是什么原因。