在Activity启动过程中如何任务栈的栈顶是否是将要启动的Activity的实例

我们在ActivityStack类中可以看到某个方法用于返回当前任务栈顶端的ActivityRecord对象,如果栈是空的,就返回null,ActivityRecord用于代表在历史任务栈中的一个Activity对象的信息。

    /*** Returns the top activity in any existing task matching the given* Intent.  Returns null if no such task is found.*/private ActivityRecord findTaskLocked(Intent intent, ActivityInfo info) {ComponentName cls = intent.getComponent();if (info.targetActivity != null) {cls = new ComponentName(info.packageName, info.targetActivity);}TaskRecord cp = null;final int N = mHistory.size();for (int i=(N-1); i>=0; i--) {ActivityRecord r = (ActivityRecord)mHistory.get(i);if (!r.finishing && r.task != cp&& r.launchMode != ActivityInfo.LAUNCH_SINGLE_INSTANCE) {cp = r.task;//Slog.i(TAG, "Comparing existing cls=" + r.task.intent.getComponent().flattenToShortString()//        + "/aff=" + r.task.affinity + " to new cls="//        + intent.getComponent().flattenToShortString() + "/aff=" + taskAffinity);if (r.task.affinity != null) {if (r.task.affinity.equals(info.taskAffinity)) {//Slog.i(TAG, "Found matching affinity!");return r;}} else if (r.task.intent != null&& r.task.intent.getComponent().equals(cls)) {//Slog.i(TAG, "Found matching class!");//dump();//Slog.i(TAG, "For Intent " + intent + " bringing to top: " + r.intent);return r;} else if (r.task.affinityIntent != null&& r.task.affinityIntent.getComponent().equals(cls)) {//Slog.i(TAG, "Found matching class!");//dump();//Slog.i(TAG, "For Intent " + intent + " bringing to top: " + r.intent);return r;}}}return null;


贴一下ActivityRecord类的信息:


/*** An entry in the history stack, representing an activity.*/
class ActivityRecord extends IApplicationToken.Stub {final ActivityManagerService service; // ownerfinal ActivityStack stack; // ownerfinal ActivityInfo info; // all about mefinal int launchedFromUid; // always the uid who started the activity.final Intent intent;    // the original intent that generated usfinal ComponentName realActivity;  // the intent component, or target of an alias.final String shortComponentName; // the short component name of the intentfinal String resolvedType; // as per original caller;final String packageName; // the package implementing intent's componentfinal String processName; // process where this component wants to runfinal String taskAffinity; // as per ActivityInfo.taskAffinityfinal boolean stateNotNeeded; // As per ActivityInfo.flagsfinal boolean fullscreen;     // covers the full screen?final boolean componentSpecified;  // did caller specifiy an explicit component?final boolean isHomeActivity; // do we consider this to be a home activity?final String baseDir;   // where activity source (resources etc) locatedfinal String resDir;   // where public activity source (public resources etc) locatedfinal String dataDir;   // where activity data should goCharSequence nonLocalizedLabel;  // the label information from the package mgr.int labelRes;           // the label information from the package mgr.int icon;               // resource identifier of activity's icon.int theme;              // resource identifier of activity's theme.TaskRecord task;        // the task this is in.long launchTime;        // when we starting launching this activitylong startTime;         // last time this activity was startedlong cpuTimeAtResume;   // the cpu time of host process at the time of resuming activityConfiguration configuration; // configuration activity was last running inActivityRecord resultTo; // who started this entry, so will get our replyfinal String resultWho; // additional identifier for use by resultTo.final int requestCode;  // code given by requester (resultTo)ArrayList results;      // pending ActivityResult objs we have receivedHashSet<WeakReference<PendingIntentRecord>> pendingResults; // all pending intents for this actArrayList newIntents;   // any pending new intents for single-top modeHashSet<ConnectionRecord> connections; // All ConnectionRecord we holdUriPermissionOwner uriPermissions; // current special URI access perms.ProcessRecord app;  // if non-null, hosting applicationBitmap thumbnail;       // icon representation of paused screenCharSequence description; // textual description of paused screenActivityState state;    // current state we are inBundle  icicle;         // last saved activity stateboolean frontOfTask;    // is this the root activity of its task?boolean launchFailed;   // set if a launched failed, to abort on 2nd tryboolean haveState;      // have we gotten the last activity state?boolean stopped;        // is activity pause finished?boolean delayedResume;  // not yet resumed because of stopped app switches?boolean finishing;      // activity in pending finish list?boolean configDestroy;  // need to destroy due to config change?int configChangeFlags;  // which config values have changedboolean keysPaused;     // has key dispatching been paused for it?boolean inHistory;      // are we in the history stack?int launchMode;         // the launch mode activity attribute.boolean visible;        // does this activity's window need to be shown?boolean waitingVisible; // true if waiting for a new act to become visboolean nowVisible;     // is this activity's window visible?boolean thumbnailNeeded;// has someone requested a thumbnail?boolean idle;           // has the activity gone idle?boolean hasBeenLaunched;// has this activity ever been launched?boolean frozenBeforeDestroy;// has been frozen but not yet destroyed.String stringName;      // for caching of toString().





本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/479618.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

无需人工!无需训练!构建知识图谱 BERT一下就行了!

文&#xff1a;Sherry今天给大家带来的是一篇号称可以自动建立知识图谱的文章《Language Models are Open Knowledge Graphs》&#xff0c;文中提出了一个叫Match and Map&#xff08;MAMA&#xff09;的模型&#xff0c;无需人工&#xff01;无需训练&#xff01;只需语料和预…

LeetCode 557. 反转字符串中的单词 III(栈)

文章目录1. 题目信息2. 解题2.1 栈2.2 STL reverse()1. 题目信息 给定一个字符串&#xff0c;你需要反转字符串中每个单词的字符顺序&#xff0c;同时仍保留空格和单词的初始顺序。 示例 1:输入: "Lets take LeetCode contest" 输出: "steL ekat edoCteeL tse…

美团OCTO万亿级数据中心计算引擎技术解析

美团点评自研的 OCTO 数据中心&#xff08;简称 Watt&#xff09;日均处理万亿级数据量&#xff0c;该系统具备较好的扩展能力及实时性&#xff0c;千台实例集群周运维成本低于10分钟。本文将详细阐述 Watt 计算引擎的演进历程及架构设计&#xff0c;同时详细介绍其全面提升计算…

中文实体命名识别工具使用汇总:Stanza、LAC、Ltp、Hanlp、foolnltk、NLTK、BosonNLP

实体命名识别相关知识Stanford CoreNLP 命名实体识别一、简介&#xff1a;二、java版本使用三、python版本使用NLTK 命名实体识别一、简介&#xff1a;二、搭建环境三、nltk使用1、英文实体命名初体验2、使用nltk来处理中文资料结巴分词使用foolnltk 命名实体识别一、简介二、p…

论文浅尝 | 基于知识图谱中图卷积神经网络的推荐系统

笔记整理&#xff1a;王若旭&#xff0c;浙江大学在读硕士&#xff0c;研究方向为关系抽取&#xff0c;零样本学习。本文发表于 www2019&#xff0c;参考链接&#xff1a;https://arxiv.org/pdf/1905.04413.pdf为了解决推荐系统中协同过滤方法面对的数据稀疏和冷启动的问题&…

手写字识别调研

项目地址&#xff1a;https://github.com/tesseract-ocr/tesseract Google的基于Tesseract的OCR识别小程序&#xff1a;https://www.cnblogs.com/rui1236/p/12155405.html CRNNCTCLoss中文手写汉字识别&#xff1a;https://www.sohu.com/a/313374838_787107 CNN在线识别手写中…

NeurIPS 2020 | Glance and Focus: 通用、高效的神经网络自适应推理框架

文 | rainforest wang源 | 知乎本文主要介绍我们被NeurIPS 2020会议录用的一篇文章&#xff1a;Glance and Focus: a Dynamic Approach to Reducing Spatial Redundancy in Image Classification代码和预训练模型已经在Github上面放出&#xff1a;https://link.zhihu.com/?tar…

如何下载Android源码(非常详细,含自动恢复下载,编译,运行模拟器说明)

今天终于把代码下载完成&#xff0c;特此开一篇博文记录一下。上图&#xff1a; 为了下载这些源码&#xff0c;历时5天5夜&#xff0c;说为什么这么长时间&#xff0c;是因为太容易中断了&#xff0c;有时候下一晚上可能就一直没在下&#xff0c;在你入睡的时候它就自己断了&am…

NumPy快速入门-- Less 基础/线性代数

文章目录1. 广播&#xff08;Broadcasting&#xff09;规则2. 使用索引数组索引3. 使用布尔值作为数组索引4. ix_()函数5. 线性代数 简单数组操作6. 技巧和提示6.1 “自动”整形6.2 矢量堆叠1. 广播&#xff08;Broadcasting&#xff09;规则 Broadcasting允许通用函数以有意义…

Intel PAUSE指令变化影响到MySQL的性能,该如何解决?

MySQL得益于其开源属性、成熟的商业运作、良好的社区运营以及功能的不断迭代与完善&#xff0c;已经成为互联网关系型数据库的标配。可以说&#xff0c;X86服务器、Linux作为基础设施&#xff0c;跟MySQL一起构建了互联网数据存储服务的基石&#xff0c;三者相辅相成。本文将分…

会议 | CCKS 2019 全国知识图谱与语义计算大会在杭州隆重召开

本文转载自公众号&#xff1a;中国中文信息学会。2019 年全国知识图谱与语义计算大会(CCKS 2019)于 8 月 24 日至 27 日在杭州召开&#xff0c;由中国中文信息学会语言与知识计算专业委员会主办&#xff0c;浙江大学承办。本次会议主题是“知识智能”。大会吸引了来自海内外的八…

Hystrix 简介和使用

Hystrix一、概念二、使用1. 环境搭建2. 服务降级3. 异常熔断4. 自定义异常熔断器5.Hystrix仪表盘监控三、测试1. 异常熔断2. 超时熔断3. 熔断器获得异常4. 异常忽略5. 自定义异常熔断器一、概念 故障蔓延&#xff1a;由于一个服务变慢或没有响应导致大量请求堆积&#xff0c;进…

android中如何使用一张图片适配不同尺寸的APP引导页

在我们平常开发的过程中在做引导页适配的时候&#xff0c;有时候会犯难&#xff0c;怎么样作图可以将各种不同尺寸分辨率的手机都适配好也就是不变形不拉伸&#xff0c;官方给的说法也只是做多套图去适配不同的分辨率&#xff0c;遇到全屏展示引导这种问题的时候就有些力不从心…

给自由职业者和远程工作者的诚恳建议,成为自由职业者和远程工作者前要考虑的那些事儿

自由并不意味着你一定可以工作轻松赚得有多&#xff0c;想要赚得多&#xff0c;你都是要付出相应劳动或者需要其他成本。自由职业和在公司工作&#xff0c;是两种不同的生活模式&#xff0c;是你一生中的不同的选择。自由职业和远程工作&#xff0c;在互联网行业中&#xff0c;…

还在用Tensorboard?机器学习实验管理平台大盘点

文 | SisyphusBJ源 | Pytorch Lightningwandb.aicomet.mlneptune.aiallegro trainsmlflowguild.aisacredtest-tubetensorboard相信很多同学看到上面这个列表的第一印象是懵的。我们先看下机器学习实验管理平台 到底是做神马滴&#xff1a;一句话概括就是&#xff1a;&#xff0…

论文浅尝 | 利用图 Transformer 实现基于知识图谱的文本生成

论文笔记整理&#xff1a;谭亦鸣&#xff0c;东南大学博士生&#xff0c;研究方向为跨语言知识图谱问答。来源&#xff1a;NAACL2019链接&#xff1a;https://arxiv.org/pdf/1904.02342.pdf本文关注如何从信息抽取结果&#xff08;特别是知识图谱&#xff09;出发&#xff0c;生…

LeetCode 230. 二叉搜索树中第K小的元素(中序遍历)

文章目录1. 题目信息2. 解题2.1 中序递归2.2 中序循环写法1. 题目信息 给定一个二叉搜索树&#xff0c;编写一个函数 kthSmallest 来查找其中第 k 个最小的元素。 说明&#xff1a; 你可以假设 k 总是有效的&#xff0c;1 ≤ k ≤ 二叉搜索树元素个数。 示例 1:输入: root …

Apache Doris在美团外卖数仓中的应用实践

序言 美团外卖数据仓库技术团队负责支撑日常业务运营及分析师的日常分析&#xff0c;由于外卖业务特点带来的数据生产成本较高和查询效率偏低的问题&#xff0c;他们通过引入Apache Doris引擎优化生产方案&#xff0c;实现了低成本生产与高效查询的平衡。并以此分析不同业务场景…

Base64加解密的实现方式

本实现方式基于JDK 1.8 实现&#xff1a; import java.util.Base64; import java.util.Base64.Decoder; import java.util.Base64.Encoder;public class Main {static String src "hello,sahadev";public static void main(String[] args) {// 获取加密对象Encoder …