大家好,又见面了,我是你们的朋友全栈君。
假设所有的activity启动方式是standard,两者的区别就是
将指定activity上面的其他activity出栈,指定activity位于栈顶,但是可以使用已有的实例或者重新创建一个实例,取决于是否加一个FLAG_ACTIVITY_SINGLE_TOP标志
如果已经存在指定的activity,那么会将指定的activity前面的实例全部销毁,将指定的实例放在栈顶,并且能够确定是单一activity,不会销毁重建,始终使用同一个activity,这就是两者最主要的区别。
standard singleTop singleTask singleInstance
今天写代码遇到了一个问题:有如下几个Activity
A – B – C
当 B – A – B 跳转的时候,使用Intent的FLAG_ACTIVITY_CLEAR_TOP会让第一个B和第二个A,destory掉
但是当B – A – C跳转的时候不会调用B和A的destory
其实这个问题以前遇到过,今天遇到的时候又忘记了。查看API文档才发现原因,所以这里记录一下避免下次又忘记了:
public static final int FLAG_ACTIVITY_CLEAR_TOP Added in API level 1
If set, and the activity being launched is already running in the current task, then instead of launching a new instance of that activity, all of the other activities on top of it will be closed and this Intent will be delivered to the (now on top) old activity as a new Intent.
文档上说,如果设置这个属性,是当要启动的Activity已经存在当前Task中,才会在启动的时候销毁其他的Activity。
所以上面当A跳C的时候不满足此条件。
当然如果你想实现这个效果可以使用:
it.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK|Intent.FLAG_ACTIVITY_CLEAR_TASK);
不过不幸的是,此方法要求最低API为11
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/160731.html原文链接:https://javaforall.cn