赞
踩
- Intent intent = new Intent(Intent.ACTION_MAIN);
- intent.putExtra("msg", "我是从自定义的notity跳转过来的");
- intent.addCategory(Intent.CATEGORY_LAUNCHER);
- intent.setClass(context, LoadActivity.class);
- <span style="color:#ff0000;"> intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK|Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);</span>
- PendingIntent pendingIntent = PendingIntent.getActivity(context, 2, intent, PendingIntent.FLAG_ONE_SHOT);
- myNotify.contentIntent = pendingIntent;
- manager.notify(pushMessageInfo.getNotifyId(), myNotify);
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。