当前位置: 代码迷 >> Android >> android 关于activity的堆栈顺序有关问题或关闭某个activity
  详细解决方案

android 关于activity的堆栈顺序有关问题或关闭某个activity

热度:66   发布时间:2016-05-01 15:35:08.0
android 关于activity的堆栈顺序问题或关闭某个activity
有时候我们有三个活动 abc,如果我们希望只有ac 那么在b中startActivity().之后直接用finish。有时候我们希望abc之后只有bc之间的返回这时候可以考虑
Intent.FLAG_ACTIVITY_NO_HISTORY.将a设置成这个 不让他在堆栈中。
对于堆栈的顺序问题
http://developer.android.com/intl/zh-CN/reference/android/content/Intent.html
  相关解决方案