我有一个应用程序,其中有3个仪表板项目作为活动。因此,只要状态栏中有通知并单击它,就应该调用相应的活动。
我知道如何创建通知,但我因为在通知上调用各自的活动而感到困惑。还有一种方法可以根据活动来区分通知。?
帮助感谢。
答案 0 :(得分:0)
Intent notificationIntent = new Intent(context, [packagename]);
PendingIntent contentIntent = PendingIntent.getActivity(context, 0, notificationIntent, 0);
notification.setLatestEventInfo(context, contentTitle, contentText, contentIntent);
mNotificationManager.notify(HELLO_ID, notification);