在通知点击上打开新活动

时间:2016-10-13 00:40:28

标签: android android-notifications

我设法从PHP文件发送通知消息并使用Firebase云消息传递(FCM)发送到手机。

用户点击移动托盘上的通知消息后,如何重定向到具有相同消息以及时间和日期的其他布局?

1 个答案:

答案 0 :(得分:0)

见下面的代码。我正在使用它,它正在打开我的HomeActivity。

NotificationManager notificationManager = (NotificationManager) context
        .getSystemService(Context.NOTIFICATION_SERVICE);
Notification notification = new Notification(icon, message, when);

Intent notificationIntent = new Intent(context, HomeActivity.class);

notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP
        | Intent.FLAG_ACTIVITY_SINGLE_TOP);

PendingIntent intent = PendingIntent.getActivity(context, 0,
        notificationIntent, 0);

notification.setLatestEventInfo(context, title, message, intent);
notification.flags |= Notification.FLAG_AUTO_CANCEL;
notificationManager.notify(0, notification);