2015年6月1日

Intent跳转并清除历史

摘要: 设有Activity跳转历史 A->B->C->D。当前在D,想要跳到B,并得到A->B, 而不是A->B->C->D->B则在跳转时要设置flag: Intent.FLAG_ACTIVITY_CLEAR_TOPIntent intent = new Intent(D.this, B.class);... 阅读全文

posted @ 2015-06-01 20:20 fashare 阅读(481) 评论(0) 推荐(0)

导航