gpt4 book ai didi

android - 具有 Intent.FLAG_ACTIVITY_NEW_TASK 的 Activity 已被销毁

转载 作者:行者123 更新时间:2023-11-29 01:49:38 25 4
gpt4 key购买 nike

如果我的应用程序在后台,我正在使用这种方式从服务启动 Activity :

        Intent intent = new Intent(this, FromBackgroundActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);

它运行完美,但是如果 FromBackgroundActivity 处于 Activity 状态并且我按下 Home 键,它会将所有内容置于背景中。如果我在任务栏中单击我的应用程序,它会将我的应用程序恢复到前台但没有 FromBackgroundActivity,它会被销毁。 (如何使用 FromBackgroundActivity 从后台恢复我的应用程序?

最佳答案

试试 intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_NEW_TASK));

它将清除所有任务并转到 FromBackgroundActivity。

关于android - 具有 Intent.FLAG_ACTIVITY_NEW_TASK 的 Activity 已被销毁,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19048360/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com