当前位置:首页 > 安卓源码 > 技术博客 >

Android的任务栈Task与启动模式

时间:2020-06-02 23:56 来源:互联网 作者:源码搜藏 浏览: 收藏 挑错 推荐 打印

什么是任务 任务是用户在执行某项工作时与之互动的一系列Activity的集合。这些Activity按照每个Activity:的顺序排列在一个返回替换中。 如何管理任务 启动模式定义活动的新实例如何与当前任务关联。 可以借助活动清单元素中的属性以及传递给startActivity(

什么是任务

任务是用户在执行某项工作时与之互动的一系列Activity的集合。这些Activity按照每个Activity:的顺序排列在一个返回替换中。

 

如何管理任务   

启动模式定义活动的新实例如何与当前任务关联。可以借助<活动>清单元素中的属性以及传递给startActivity()的意图中的标记来实现任务的关联方式

 

如何查看当前系统的任务栈 

  1. 手机中点击多任务键可以看到系统当前的任务栈。

  2. 命令行中   adb shell dumpsys活动   查看以下关键内容

  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
...  ACTIVITY MANAGER ACTIVITIES (dumpsys activity activities)...   Running activities (most recent first):   TaskRecord{386481f #782 A=com.testintent_1 U=0 StackId=1 sz=1}     Run #1: ActivityRecord{e60b18e u0 com.testintent/.MainActivity t782}   TaskRecord {120576c #781 A=com.testintent U=0 StackId=1 sz=1}     Run #0: ActivityRecord{bdb842e u0 com.testintent/.CoverActivity t781}...

有两个任务栈:com.testintent和com.testintent_1。

 

活动启动模式

1. 标准的  模式。系统在启动该活动的任务中创建一个新实例,转换意图传递给该实例。活动可以重复实例化,每个实例可以属于不同的任务,一个任务可以拥有多个实例。

 

2.  singleTop  如果当前任务的顶部已存在Activity的实例,则系统会通过调用其onNewIntent()方法来将intent转送给该实例,而不是创建Activity的新实例。Activity可以多个实例化,每个实例可以属于不同的任务,一个任务可以拥有多个实例(但必须是返回多个顶部的Activity不是该Activity的现有实例)。

  • singleTop模式,只在当前任务栈中体现。

  • 如果通过startActivityForResult启动一个设置了singleTop的活动,singleTop模式将无效。

     

3.   singleTask  当一个具有singleTask模式的活动请求启动,系统首先会寻找是否存在活动想要的任务栈(taskAffinity标识活动所需的任务栈的名字,有时情况下是应用的包名),如果不存在,,就创建一个新任务栈,然后创建A的实例放入栈中。如果存在所需任务栈,有实例存在,就把A上面的活动全部出栈,将intent传递给该实例的onNewIntent()方法,如果实例不存在,就创建实例并加入栈中。    

  • TaskAffinity属性主要和singleTask启动模式或allowTaskReparenting属性配对使用。如果应用A启动应用B allowTaskReparenting为true的活动,那么当应用B启动,此活动会从A的任务栈转移到应用B的任务栈。 

    再具体点:A应用启动B应用的ActivityC,然后按home键回到桌面,再按B应用的图标,这时启动的不是B的主Activity,而是重新显示了A应用启动的ActivityC,C从A的任务栈转移到了B的任务栈。 

  • 当作为startActivityForResult启动的目标时: 

    1.  4.x版本。会立即在上个活动中。onActivityResult中返回一个为取消的resultCode。(无论新的活动是否在新的任务栈中启动)。

    2.  5.x版本。无论是否定义了taskAffinity,都会把将要被启动的活动的启动模式忽略,onActivityResult方法会正常。

 

4.  singleInstance  与“ singleTask”相似,唯一不同的是系统不会将任何其他活动启动到包含该实例的任务中。该活动始终是其任务唯一的成员;由该活动启动的任何活动都会在其他的任务中打开。

 

onNewIntent()使用注意

方法体中需手动调用setIntent(intent),否则之后的getIntent()获取的都是旧的intent对象。

 

常用的意图标志

1. FLAG_ACTIVITY_NEW_TASK

  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
 ... * If set, this activity will become the start of a new task on this history stack. ... * When using this flag, if a task is already running for the activity * you are now starting, then a new activity will not be started; instead, * the current task will simply be brought to the front of the screen with * the state it was last in.  See {@link #FLAG_ACTIVITY_MULTIPLE_TASK} for a flag * to disable this behavior. * This flag can not be used when the caller is requesting a result from the activity being launched. ...

如果使用了此标志时,如果任务中已经有了你要启动的Activity,就不再启动一个新的Activity;当前任务会被带到前台。可以用FLAG_ACTIVITY_MULTIPLE_TASK使这种行为无效。当调用者startActivityForResult()时,不能使用此标志。

 

例如栈中情况是A,B,C,在C中启动D,如果在Manifest.xml文件中给D添加了Affinity(另存为包名)的值和C所在的任务中的不一样,可以在新标记的Affinity所存在的任务中看D是否已经启动,如果已经启动直接将D所在的任务带入到前台,或者直接将活动启动;如果是要么的或者指定的Affinity和Task一样,就和标准模式相同启动一个新的Activity。此标志与启动模式singleTask效果不太相同,对于非Activity启动的Activity(该Service或通知中启动的Activity)需要显示的设置Intent.FLAG_ACTIVITY_NEW_TASK

 

2. FLAG_ACTIVITY_CLEAR_TOP

  •  
  •  
  •  
  •  
  •  
  •  
  •  
 ... * If it has declared its launch mode to be "multiple" (the * default) and you have not set {@link #FLAG_ACTIVITY_SINGLE_TOP} in * the same intent, then it will be finished and re-created; for all other * launch modes or if {@link #FLAG_ACTIVITY_SINGLE_TOP} is set then this * Intent will be delivered to the current instance's onNewIntent(). ...

如果申明了启动模式是“ multiple”(在某些情况下)且没有在同一个Intent中设置FLAG_ACTIVITY_SINGLE_TOP,活动将结束并重新创建(设置onCreate生命周期方法);对于其他所有的启动模式或设置为FLAG_ACTIVITY_SINGLE_TOP, Intent将被分配给实例的onNewIntent()方法。

 

如果希望与launch mode中的某个栈中情况是A,B,C,D,在D中启动B(加入该标志),栈中的情况将为A,B,B会执行。 singleTask效果相同执行onNewIntent(),可以同时加上FLAG_ACTIVITY_SINGLE_TOP。  

 

3. FLAG_ACTIVITY_SINGLE_TOP 

  •  
  •  
 * If set, the activity will not be launched if it is already running * at the top of the history stack.

如果设置,如果此活动已经在历史悠久的顶部将不会被启动

 

相当于launch mode的singleTop,某种栈中情况是A,B,C,D,在D中启动D(加入该标志),栈中的情况还是A,B,C,D。

 

4. FLAG_ACTIVITY_CLEAR_TASK

  •  
  •  
  •  
  •  
  •  
 * If set in an Intent passed to {@link Context#startActivity Context.startActivity()}, * this flag will cause any existing task that would be associated with the * activity to be cleared before the activity is started.  That is, the activity * becomes the new root of an otherwise empty task, and any old activities * are finished.  This can only be used in conjunction with {@link #FLAG_ACTIVITY_NEW_TASK}.

如果在一个Intent中设置,会导致在此活动开启之前,任何与该活动相关的任务都会被清除。此活动将是一个空task的最底部的活动,之前所有的活动将被终止,此标志只能与FLAG_ACTIVITY_NEW_TASK配合使用。

 

5. FLAG_ACTIVITY_REORDER_TO_FRONT

  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
 * If set in an Intent passed to {@link Context#startActivity Context.startActivity()}, * this flag will cause the launched activity to be brought to the front of its * task's history stack if it is already running. * For example, consider a task consisting of four activities: A, B, C, D. * If D calls startActivity() with an Intent that resolves to the component * of activity B, then B will be brought to the front of the history stack, * with this resulting order:  A, C, D, B. * This flag will be ignored if {@link #FLAG_ACTIVITY_CLEAR_TOP} is also * specified.

如果在Intent中设置,如果待启动的活动已经开启在运行了,此标志将放置在任务历史示例的前面。例如栈中情况是A,B,C,D,如果D启动B,栈中将如果将FLAG_ACTIVITY_CLEAR_TOP 也设为指定,此标志将被忽略。则变成A,C,D,B(B将变为onNewIntent())       

 

6. FLAG_ACTIVITY_FORWARD_RESULT  

  •  
  •  
  •  
  •  
  •  
 * If set and this intent is being used to launch a new activity from an * existing one, then the reply target of the existing activity will be * transferred to the new activity.  This way, the new activity can call * {@link android.app.Activity#setResult} and have that result sent back to * the reply target of the original activity.

如果在Intent中设置此标记从现有的活动转到开启一个新的活动,现有的活动将变为回复的目标转移给新活动。新活动可以调用setResult()将结果发送给现有活动的回复目标。

 

例如:A通过startActivityForResult启动B,B启动C,但B为过渡页可以完成了,A在期望C把结果返回。这种情况,B可以在启动C的时候加入该标志。 

 

7. FLAG_ACTIVITY_PREVIOUS_IS_TOP

  •  
  •  
  •  
  •  
  •  
 * If set and this intent is being used to launch a new activity from an existing one ... * The previous activity will * be used as the top, with the assumption being that the current activity * will finish itself immediately.

如果当前的活动在开启新活动的意图设置此标志,当前活动之前的活动将被当视为顶部,当前的活动将立即结束。

 

例如:栈中情况A,B,C,C启动D时使用此标志,在启动时C不会被当成成栈顶Activity,而不是B作为栈顶启动D,然后C会finish()。经常与FLAG_ACTIVITY_FORWARD_RESULT一起配合使用。

 

8. FLAG_ACTIVITY_NO_HISTORY

  •  
  •  
  •  
  •  
  •  
  •  
  •  
* If set, the new activity is not kept in the history stack.  As soon as* the user navigates away from it, the activity is finished.  This may also* be set with the {@link android.R.styleable#AndroidManifestActivity_noHistory* noHistory} attribute.* If set, {@link android.app.Activity#onActivityResult onActivityResult()}* is never invoked when the current activity starts a new activity which* sets a result and finishes.

如果设置了此标志,开启的活动将不会存在历史重叠中。一旦用户离开它,活动就结束了。也可以使用{@link android.R来设置。styleable#AndroidManifestActivity_noHistory noHistory}属性。如果设置了此标志,活动将不会发生onActivityResult()。

 

9. FLAG_ACTIVITY_TASK_ON_HOME  

  •  
  •  
  •  
  •  
  •  
* If set in an Intent passed to {@link Context#startActivity Context.startActivity()},* this flag will cause a newly launching task to be placed on top of the current* home activity task (if there is one).  That is, pressing back from the task* will always return the user to home even if that was not the last activity they* saw. This can only be used in conjunction with {@link #FLAG_ACTIVITY_NEW_TASK}.

如果intent中设置此标志将使新启动的任务进入当前首页活动任务之上(如果有的话)。则,从任务中返回总是重定向到用户返回到首页,甚至这不是他们看到的最后一个活动。此标志只能与 FLAG_ACTIVITY_NEW_TASK  配合使用。

 

10. FLAG_EXCLUDE_STOPPED_PACKAGES   

  •  
  •  
  •  
* If set, this intent will not match any components in packages that* are currently stopped.  If this is not set, then the default behavior* is to include such applications in the result.

如果设置,意图将与当前停止的包中的任何组件不匹配。如果未设置此标志,则其他行为是在结果中包含此类应用程序。

Android的任务栈Task与启动模式 转载https://www.codesocang.com/appboke/44968.html

技术博客阅读排行

最新文章