Android - 在注销时终止所有活动

时间:2012-09-04 15:19:59

标签: android

当用户在我的应用程序中点击“Logout”时,我希望他们进入“登录”活动并终止我的应用程序中的所有其他正在运行或暂停的活动。

如果用户之前已登录,我的应用程序正在使用“共享首选项”绕过启动时的“登录”活动。因此,FLAG_ACTIVITY_CLEAR_TOP在这种情况下不起作用,因为当用户被带到那里时,Login活动将位于活动堆栈的顶部。

3 个答案:

答案 0 :(得分:12)

您可以使用BroadcastReceiver在其他活动中侦听“杀死信号”

http://developer.android.com/reference/android/content/BroadcastReceiver.html

在您的活动中注册一个BroadcastReceiver

IntentFilter intentFilter = new IntentFilter();
intentFilter.addAction("CLOSE_ALL");
BroadcastReceiver broadcastReceiver = new BroadcastReceiver() {
  @Override
  public void onReceive(Context context, Intent intent) {
    // close activity
  }
};
registerReceiver(broadcastReceiver, intentFilter);

然后,您只需从应用中的任意位置发送广播

Intent intent = new Intent("CLOSE_ALL");
this.sendBroadcast(intent);

答案 1 :(得分:8)

对于API 11+,您可以使用Intent.FLAG_ACTIVITY_CLEAR_TASK|Intent.FLAG_ACTIVITY_NEW_TASK,如下所示:

Intent intent = new Intent(this, MyActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK|Intent.FLAG_ACTIVITY_NEW_TASK);
this.startActivity(intent);

它将完全清除所有先前的活动并开始新的活动。

答案 2 :(得分:2)

而不是FLAG_ACTIVITY_CLEAR_TOP使用FLAG_ACTIVITY_CLEAR_TASK(虽然API 11+):

  

如果在传递给Context.startActivity()的Intent中设置,则此标志将导致在活动开始之前清除与活动关联的任何现有任务。也就是说,活动成为否则为空任务的新根,并且任何旧活动都已完成。这只能与FLAG_ACTIVITY_NEW_TASK一起使用。