Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想完成 Android 应用程序中的所有活动,然后从头开始重新启动它。在我回到第一个之前,有没有一种简单的方法可以实现这一点而无需一一完成?
只需在启动意图时清除任务。
Intent restartIntent = new Intent(this, MainActivity.class); restartIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); //Set this flag startActivity(restartIntent); finish();