1

我想完成 Android 应用程序中的所有活动,然后从头开始重新启动它。在我回到第一个之前,有没有一种简单的方法可以实现这一点而无需一一完成?

4

1 回答 1

6

只需在启动意图时清除任务。

Intent restartIntent = new Intent(this, MainActivity.class);
restartIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); //Set this flag
startActivity(restartIntent);
finish();
于 2013-11-04T19:07:22.857 回答