gpt4 book ai didi

Android - 是否可以确定一个 Activity 是否从另一个任务开始?

转载 作者:行者123 更新时间:2023-11-29 16:09:12 26 4
gpt4 key购买 nike

这非常详尽,所以我会尽量讲清楚。目前,我的应用程序在启动时需要重新加载一些数据。我在主要 Activity 的 onCreate/onRestart 方法中加载此数据。但是,如果用户从未离开当前任务,我需要注意不要重新加载数据。

例如,如果我需要从我的主要 Activity 中启动内置的联系人应用程序来选择一个联系人,那么我的主要 Activity 将在我选择一个新联系人时暂停/停止。当我返回我的主要 Activity 时,将调用 onRestart。在这种情况下,因为我从未离开过 Application 的任务,所以我不想重新加载数据。这意味着需要在此处进行一些检查,以确定用户是否直接从“通讯录”应用返回而从未离开过。

否则,如果用户在联系人应用程序打开时退出并从启动器菜单(或最近的应用程序列表等)重新启动应用程序 - 我想关闭联系人应用程序并在主要 Activity 时重新加载数据onRestart 方法被调用。

有没有一种方法可以在不使用任何用户恐惧权限(例如 GET_TASKS)的情况下做到这一点。我已经在这个问题上停留了很长时间,所以我们将不胜感激 :)

泰 Vim ,B.坎贝尔

最佳答案

我从 Android 文档中学到了很多东西:

Tasks and Back Stack

Navigation with Back and Up

Application Structure

这里有一些亮点:

A task is a collection of activities that users interact with when performing a certain job. The activities are arranged in a stack (the "back stack"), in the order in which each activity is opened.

When the current activity starts another, the new activity is pushed on the top of the stack and takes focus. The previous activity remains in the stack, but is stopped. When an activity stops, the system retains the current state of its user interface. When the user presses the Back button, the current activity is popped from the top of the stack (the activity is destroyed) and the previous activity resumes (the previous state of its UI is restored). Activities in the stack are never rearranged, only pushed and popped from the stack—pushed onto the stack when started by the current activity and popped off when the user leaves it using the Back button.

这意味着当你的申请pick up a contact ,任务中的 Activity 堆栈可能是:

|通讯录中的 Activity A |

|您应用中的 Activity B |

|其他应用中的 Activity C|

When the user leaves a task by pressing the Home button, the current activity is stopped and its task goes into the background. The system retains the state of every activity in the task. If the user later resumes the task by selecting the launcher icon that began the task, the task comes to the foreground and resumes the activity at the top of the stack.

即使用户在联系人应用程序打开时退出并从启动器菜单或最近使用的应用程序列表中重新启动该应用程序, Activity 堆栈仍然与我们在上面看到的一样。唯一可能使您的 Activity 从另一个任务开始的可能性是另一个应用程序(可能是启动器应用程序)通过 startActivity 标志在新任务中启动主要 Activity ,这是一种罕见的情况。在这种罕见的情况下,您可以通过 Binder.getCallinguid() 简单地检查启动您的 Activity 的应用程序的 uid。区分它。

根据评论编辑:

您可以通过 FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY 检查是否从历史记录中打开了 Activity :

if ((getIntent().getFlags() & Intent.FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY) != 0){

}else{

}

您还可以查看:

android:excludeFromRecents如果您不希望您的应用从最近的应用启动

android:finishOnTaskLaunch

android:stateNotNeeded

关于Android - 是否可以确定一个 Activity 是否从另一个任务开始?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14825297/

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