如何在使用不同的 Intent 启动 Activity 时防止其出现多个实例 [英] How to prevent multiple instances of an Activity when it is launched with different Intents

查看:16
本文介绍了如何在使用不同的 Intent 启动 Activity 时防止其出现多个实例的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在使用 Google Play 商店应用(以前称为 Android Market)上的打开" 按钮启动应用程序时遇到了一个错误.似乎从 Play 商店启动它使用的 Intent 与从手机的应用程序图标菜单启动它不同.这会导致启动同一个 Activity 的多个副本,这些副本相互冲突.

I've come across a bug in my application when it is launched using the "Open" button on the Google Play Store app (previously called Android Market). It seems that launching it from the Play Store uses a different Intent than launching it from the phone's application menu of icons. This is leading to multiple copies of the same Activity being launched, which are conflicting with each other.

例如,如果我的应用由活动 A-B-C 组成,那么此问题可能会导致 A-B-C-A 堆栈.

For example, if my app consists of the Activities A-B-C, then this issue can lead to a stack of A-B-C-A.

我尝试在所有活动上使用 android:launchMode="singleTask" 来解决此问题,但是每当我点击 HOME 时,它都会产生将 Activity 堆栈清除为根目录的不良副作用按钮.

I tried using android:launchMode="singleTask" on all the Activities to fix this problem, but it has the unwanted side-effect of clearing the Activity stack to root, whenever I hit the HOME button.

预期的行为是: A-B-C -> HOME -> 当应用程序恢复时,我需要: A-B-C -> HOME -> A-B-C

The expected behavior is: A-B-C -> HOME -> And when the app is restored, I need: A-B-C -> HOME -> A-B-C

有没有一种好方法可以防止启动多个相同类型的 Activity,而无需在使用 HOME 按钮时重置为根 Activity?

Is there a good way to prevent launching multiple Activities of the same type, without resetting to the root activity when using the HOME button?

推荐答案

将此添加到 onCreate 中,您应该可以开始了:

Add this to onCreate and you should be good to go:

// Possible work around for market launches. See https://issuetracker.google.com/issues/36907463
// for more details. Essentially, the market launches the main activity on top of other activities.
// we never want this to happen. Instead, we check if we are the root and if not, we finish.
if (!isTaskRoot()) {
    final Intent intent = getIntent();
    if (intent.hasCategory(Intent.CATEGORY_LAUNCHER) && Intent.ACTION_MAIN.equals(intent.getAction())) {
        Log.w(LOG_TAG, "Main Activity is not the root.  Finishing Main Activity instead of launching.");
        finish();
        return;       
    }
}

这篇关于如何在使用不同的 Intent 启动 Activity 时防止其出现多个实例的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆