Android中启动模式(launchMode)分为standard, singleTop, singleTask, singleInstance四种,可通过AndroidManifest.xml文件设置某个activity的启动模式。接下来会一一探索启动模式对app行为的影响。用到的app和activity构成图如下,每次改变launchMode都只针对App2的SecondActivity:

Standard

  1. App2内部跳转
    从Main到Second再到Third再到Second,可以看到日志记录如下:

  2. App1跳转到App2
    保持App2当前状态切到后台,运行App1从App1:Main跳转到App2:Second跳转到App2:Third,log记录如下:

可以看出,当采用standard作为启动模式时(standard也是Activity的缺省启动模式),每次启动该Activity都会产生一个新的实例,App内的Activity处于同一任务栈中;不同App间Activity调起时,被调起者与调起者也处于同一任务栈,当然,ApplicationContext是不一样的。

singleTop

  1. App2内部跳转
    从Main到Second再到Third再到Second,可以看到日志记录如下:

  2. App1跳转到App2
    保持App2最顶端为SecondActivity切到后台,运行App1从App1:Main跳转到App2:Second跳转到App2:Third,log记录如下:

  3. 暂时修改App2:Second的跳转逻辑为Second->Second,即自己跳自己,log记录如下:

可以看出,当采用singleTop作为启动模式时,行为特性和standard基本一致,唯一不同的情形是,singleTop的Activity位于后退栈顶、且该任务栈正与用户交互时,当有新的Intent要打开这个Activity不再产生一个新的实例,而是使用调栈实例同时回调栈顶实例的onNewIntent()方法将新的Intent传入。

顺便附上doc说明:
If, when starting the activity, there is already an instance of the same activity class in the foreground that is interacting with the user, then re-use that instance. This existing instance will receive a call to {@link android.app.Activity#onNewIntent Activity.onNewIntent()} with the new Intent that is being started.

singleTask

  1. App2内部跳转
    从Main到Second再到Third再到Second,可以看到日志记录如下:

  2. App1跳转到App2
    保持App2最顶端为ThirdActivity切到后台,运行App1从App1:Main跳转到App2:Second跳转到App2:Third,log记录如下:

可以看出,当采用singleTask作为启动模式时,行为特性和singleTop基本一致,唯一不同的情形是,使用旧Activity实例的情况不再局限于“该位于后退栈顶、且该任务栈正与用户交互时”,而是只要某个Task中已存在该Activity实例,就会调起该后台运行Task,意味着调起方Task与被调起方Task并不处于同一后退堆栈

顺便附上doc说明:
If, when starting the activity, there is already a task running that starts with this activity, then instead of starting a new instance the current task is brought to the front. The existing instance will receive a call to {@link android.app.Activity#onNewIntent Activity.onNewIntent()} with the new Intent that is being started, and with the {@link android.content.Intent#FLAG_ACTIVITY_BROUGHT_TO_FRONT Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT} flag set. This is a superset of the singleTop mode, where if there is already an instance of the activity being started at the top of the stack, it will receive the Intent as described there (without the FLAG_ACTIVITY_BROUGHT_TO_FRONT flag set). See the Tasks and Back Stack document for more details about tasks.

singleInstance

  1. App2内部跳转
    从Main到Second再到Third再到Second,可以看到日志记录如下:

    可以看到,页面扭转时SecondActivity独自拥有了一个任务栈,跳到Third后Third的任务栈和Main维持一致,所以这里,我们的App2内就存在着2个任务栈。猜想一下,这个时候我们的回退栈是什么样的?出乎意料,后退时,会先以任务栈为单位后退,当前一个任务栈清空后,再进入后一个任务栈的顶端逐一移除

  2. App1跳转到App2
    保持App2最顶端为ThirdActivity切到后台,运行App1从App1:Main跳转到App2:Second跳转到App2:Third,log记录如下:

可以看出,当采用singleInstance作为启动模式时,行为特性最特殊,被singleInstance标记的Activity会单独占有一个任务,如果已有一个Activity实例存在则不会再实例化新实例,而是把原实例所在任务唤醒到前台并回调其onNewIntent方法。

顺便附上doc说明:
Only allow one instance of this activity to ever be running. This activity gets a unique task with only itself running in it; if it is ever launched again with the same Intent, then that task will be brought forward and its {@link android.app.Activity#onNewIntent Activity.onNewIntent()} method called. If this activity tries to start a new activity, that new activity will be launched in a separate task. See the Tasks and Back Stack document for more details about tasks.

Android中Activity启动模式探索的更多相关文章

  1. Android中Activity启动模式详解

    在Android中每个界面都是一个Activity,切换界面操作其实是多个不同Activity之间的实例化操作.在Android中Activity的启动模式决定了Activity的启动运行方式. An ...

  2. 第二课android中activity启动模式

    一.标准启动模式可以用函数gettaskid得到任务的idtostring得到地址用textallcaps来设置是否全部大写应用启动自己是在任务栈里创建不同实例可以用返回来返回上一个任务栈在andro ...

  3. Android中的启动模式(下)

    在这篇文章中,我会继续跟大家分享有关于Android中启动模式的相关知识.当然,如果对这个启动模式还不完全了解或者没有听过的话,可以先看看我之前写的有关于这个知识点的入门篇Android的启动模式(上 ...

  4. Android开发——Activity启动模式详解

    1. Activity的启动模式 本文原创,转载请注明出处:http://blog.csdn.net/seu_calvin/article/details/52054893 1.1 Standard标 ...

  5. Android 之Activity启动模式(二)之 Intent的Flag属性

    首页博客链接关于我留言板 前面介绍了通过launchMode设置Activity的启动模式.本章接着介绍Activity的启动模式相关内容,讲解的内容是Intent与启动模式相关的Flag,以及and ...

  6. Android之Activity启动模式

    正常模式 每个应用都有一个任务栈,任务栈中保存着已创建的Activity,先创建的Activity先入栈,栈顶是当前正在显示的activity(running),这是正常模式下的Activity的管理 ...

  7. Android中Activity启动过程探究

    首先追溯到Activity的启动,随便启动一个自己写的demo项目,使用DDMS进行debug标记,然后在Debug中把主线程暂停,可以看到调用栈.如下图所示: 于是我们先看android.app.A ...

  8. android入门 — Activity启动模式

    1.standard模式 standard模式是系统的默认启动方式,每次激活Activity都会创建Activity,并放在任务栈中. 系统不会在乎活动是否已经存在于返回栈中,每次启动都会创建该活动的 ...

  9. Android中Activity的启动模式

    简介 Android中的活动启动方式分为4种:standard, singleTop, singleTask, singleInstance.可以在AndroidManifest.xml中通过给< ...

随机推荐

  1. 数据库基础02-MYSQL的事务

    Mysql的事务 1.基本概念      事务本质是一组SQL操作,事务中的语句要么全部执行成功,或者全部执行失败. 2.如何保证一个事务:四个特性(ACID) 原子性 (Automic)       ...

  2. vue页面原样导出excel表格

    github地址:https://github.com/wuzhiaite/vue-samples 1.excel导出 做过业务系统的知道,进行涉及到excel的导出,列表数据动则几十万,但是也有一部 ...

  3. Javascript安全编程规范

    命名 1.原则——编码格式UTF-8,根据功能为变量与方法命名(尽量不缩写) 2.类——构造函数/类 使用驼峰命名法,且首字母大写 3.方法——动词.动宾结构,使用驼峰命名法,首字母小写 例如:get ...

  4. 不用加减乘除做加法(剑指offer-48)

    题目描述 写一个函数,求两个整数之和,要求在函数体内不得使用+.-.*./四则运算符号. 题目解析 首先看十进制是如何做的: 5+7=12,三步走 第一步:相加各位的值,不算进位,得到2. 第二步:计 ...

  5. Jenkins 自动化(CI/DI)部署

    1. 背景介绍 在实际开发中,经常要一边开发一边测试,经常为了一个功能而不断更新版本,这些情况都会涉及到频繁的打包.部署:手动打包的涉及到项目上传.打包.发布等很多重复工作: 那么,有一种工具能够实现 ...

  6. Quartz.Net系列(十一):System.Timers.Timer+WindowsService实现定时任务

    1.创建WindowsService项目 2.配置项目 3.AddInstaller(添加安装程序) 4.修改ServiceName(服务名称).StartType(启动类型).Description ...

  7. 安装visual stdio 2017后依然报错:Unable to find vcvarsall.bat

    安装visual stdio 2017后依然报错:Unable to find vcvarsall.bat 解决办法:更新setuptools 原文章:https://blog.csdn.net/wl ...

  8. 数据可视化基础专题(十四):pyecharts 基础(一)简单上手

    1.引言 文档位于 https://pyecharts.org/#/zh-cn/intro 示例位于 https://gallery.pyecharts.org/#/README echarts 官网 ...

  9. 数据可视化之powerBI基础(十三)熟练使用Power BI的日期切片器

    https://zhuanlan.zhihu.com/p/64416522 交互式设计可以让用户使用的过程中更具参与感,在PowerBI中经常用到的交互方式就是切片器,利用它可以从不同维度查看数据,切 ...

  10. python生成器原理剖析

    python生成器原理剖析 函数的调用满足"后进先出"的原则,也就是说,最后被调用的函数应该第一个返回,函数的递归调用就是一个经典的例子.显然,内存中以"后进先出&quo ...