gpt4 book ai didi

android - 完成所有 Activity 并继续出现在最近的申请中

转载 作者:行者123 更新时间:2023-11-29 23:31:20 25 4
gpt4 key购买 nike

我使用了 finishAffinitybelow code 因为完成所有 Activity 。但是我的应用程序删除了最近的应用程序。

我想完成所有 Activity 并继续出现在最近的申请中。我该怎么做?

Intent i = new Intent(Intent.ACTION_MAIN);
i.addCategory(Intent.CATEGORY_HOME);
i.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(i);
finish();
System.exit(0);

最佳答案

It is used to remove a number of Activitys belonging to a specific application from the current task (which may contain Activitys belonging to multiple applications)

试试这个:

Intent intent = new Intent(getApplicationContext(), Home.class); 
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(intent);

关于android - 完成所有 Activity 并继续出现在最近的申请中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52623431/

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