首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

notification返回home在发起有关问题

2012-09-05 
notification返回home在发起问题如果两个活动a b 放你在b的时候返回home,然后按notification在返回时会返

notification返回home在发起问题

如果两个活动a b 放你在b的时候返回home,然后按notification在返回时会返回a

我现在想返回b 那么就需要在Intent中添加

Intent notificationIntent = new Intent(this, Main.class);
??notificationIntent.addFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT);
??//关键两句
??notificationIntent.setAction("android.intent.action.MAIN");
??notificationIntent.addCategory("android.intent.category.LAUNCHER");

热点排行