Android开发notification跳转
项目中的一个小应用,本来不值得写的,不过最近忙一直没写博客,正好现在闲了,写写打发时间。
在一个Service中发的一个Notification,需要给它一个PendingIntent,让这个通知能跳转到应用。如果应用已退出,则启动;如果应用是通过Home键回到桌面的,则进入到应用之前的界面不重新启动。这个PendingIntent需要传一个intent,就是通过这个Intent来实现的。
[java]
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_LAUNCHER);
intent.setComponent(new ComponentName(getPackageName(), yourLauncherActivityName));
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
补充:移动开发 , Android ,