3 回答
TA贡献1909条经验 获得超7个赞
将此添加到onCreate,你应该很高兴:
// 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;
}
}
TA贡献1796条经验 获得超7个赞
我只想解释它失败的原因,以及如何以编程方式重现此错误,以便将其合并到测试套件中:
当您通过Eclipse或Market App启动应用程序时,它会使用意图标志启动:FLAG_ACTIVITY_NEW_TASK。
通过启动器(home)启动时,它使用标志:FLAG_ACTIVITY_NEW_TASK | FLAG_ACTIVITY_BROUGHT_TO_FRONT | FLAG_ACTIVITY_RESET_TASK_IF_NEEDED,并使用操作“ MAIN ”和类别“ LAUNCHER ”。
如果您想在测试用例中重现这一点,请使用以下步骤:
adb shell am start -f 0x10000000 -n com.testfairy.tests.regression.taskroot/.MainActivity
然后做任何事情来进行其他活动。为了我的目的,我只是放了一个按钮来启动另一个活动。然后,回到启动器(主页):
adb shell am start -W -c android.intent.category.HOME -a android.intent.action.MAIN
并模拟通过启动器启动它:
adb shell am start -a "android.intent.action.MAIN" -c "android.intent.category.LAUNCHER" -f 0x10600000 -n com.testfairy.tests.regression.taskroot/.MainActivity
如果您尚未合并isTaskRoot()解决方法,则会重现该问题。我们在自动测试中使用它来确保此错误不再发生。
希望这可以帮助!
- 3 回答
- 0 关注
- 814 浏览
添加回答
举报