安排多个未来通知
Scheduling multiple future notifications
我目前正在调试我的应用程序中的通知问题。在某些情况下,我想做的是安排在火箭发射时弹出的通知。我所做的是,在从 API 获得计划发射列表后,我将获取发射日期(自 1970 年 1 月 1 日以来的毫秒数)并从中减去 System.currentTimeMillis()
。然后我会使用结果时间来安排将来的通知,表示为 System.currentTimeMillis() + timeDifference
。我注意到无论出于何种原因,只显示 1 个通知。
我试过通过在未来的 2、4 和 6 分钟安排通知来进行调试,但是通知仅在 6 分钟标记处显示。
部分相关代码如下:
public void scheduleNotifications(List<Launch> launches) {
for(int i = 0; i < launches.size(); i++) {
SimpleDateFormat format = new SimpleDateFormat("MMMM dd, yyyy HH:mm:ss z");
Date date = null;
try {
date = format.parse(launches.get(i).getWindowstart());
} catch (ParseException e) {
e.printStackTrace();
}
long timeBetween = date.getTime() - System.currentTimeMillis();
Integer id = Long.valueOf(date.getTime()).intValue();
Intent notificationIntent = new Intent(this, NotificationPublisher.class);
notificationIntent.putExtra(NotificationPublisher.NOTIFICATION_ID, id);
notificationIntent.putExtra(NotificationPublisher.NOTIFICATION, getNotification(launches.get(i).getRocket().getName(), launches.get(i).getLocation().getPads().get(0).getName()));
PendingIntent pendingIntent = PendingIntent.getBroadcast(this, 0, notificationIntent, 0);
AlarmManager alarmManager = (AlarmManager) getSystemService(Context.ALARM_SERVICE);
//Debug. Schedule at 2, 4, 6 minutes.
if (i == 0) {
alarmManager.set(AlarmManager.RTC_WAKEUP, System.currentTimeMillis() + 120000, pendingIntent);
}
if (i == 1) {
alarmManager.set(AlarmManager.RTC_WAKEUP, System.currentTimeMillis() + 240000, pendingIntent);
}
if (i == 2) {
alarmManager.set(AlarmManager.RTC_WAKEUP, System.currentTimeMillis() + 360000, pendingIntent);
}
}
}
private Notification getNotification(String rocketName, String padName) {
Notification.Builder builder = new Notification.Builder(this);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, new Intent(this, MainActivity.class), 0);
builder.setContentIntent(pendingIntent);
builder.setContentTitle("Upcoming Launch");
builder.setContentText("A launch of a " + rocketName + " is about to occur at " + padName + ". Click for more info.");
builder.setSmallIcon(R.drawable.rocket_icon);
return builder.build();
}
广播接收器:
public class NotificationPublisher extends BroadcastReceiver {
public static String NOTIFICATION_ID = "notification_id";
public static String NOTIFICATION = "notification";
public void onReceive(Context context, Intent intent) {
NotificationManager notificationManager = (NotificationManager)context.getSystemService(Context.NOTIFICATION_SERVICE);
Notification notification = intent.getParcelableExtra(NOTIFICATION);
int id = intent.getIntExtra(NOTIFICATION_ID, 0);
notificationManager.notify(id, notification);
}
}
我想知道为什么只显示一个通知,以及我需要添加什么才能实现前面所述的目标。
当您使用 AlarmManager
设置闹钟时,它会自动取消任何具有匹配 PendingIntent
的现有闹钟。由于您的所有 PendingIntent
都包含相同的组件,因此每次设置闹钟时,之前设置的闹钟都会自动取消。
如果要设置多个闹钟,必须确保每个 PendingIntent
都是唯一的。您可以通过以下方式之一执行此操作:
- 对每个
PendingIntent
使用不同的 requestCode
(PendingIntent.getBroadcast()
的第二个参数)
- 在传递给
PendingIntent.getBroadcast()
的 Intent
中为每个 PendingIntent
使用不同的 ACTION
我目前正在调试我的应用程序中的通知问题。在某些情况下,我想做的是安排在火箭发射时弹出的通知。我所做的是,在从 API 获得计划发射列表后,我将获取发射日期(自 1970 年 1 月 1 日以来的毫秒数)并从中减去 System.currentTimeMillis()
。然后我会使用结果时间来安排将来的通知,表示为 System.currentTimeMillis() + timeDifference
。我注意到无论出于何种原因,只显示 1 个通知。
我试过通过在未来的 2、4 和 6 分钟安排通知来进行调试,但是通知仅在 6 分钟标记处显示。
部分相关代码如下:
public void scheduleNotifications(List<Launch> launches) {
for(int i = 0; i < launches.size(); i++) {
SimpleDateFormat format = new SimpleDateFormat("MMMM dd, yyyy HH:mm:ss z");
Date date = null;
try {
date = format.parse(launches.get(i).getWindowstart());
} catch (ParseException e) {
e.printStackTrace();
}
long timeBetween = date.getTime() - System.currentTimeMillis();
Integer id = Long.valueOf(date.getTime()).intValue();
Intent notificationIntent = new Intent(this, NotificationPublisher.class);
notificationIntent.putExtra(NotificationPublisher.NOTIFICATION_ID, id);
notificationIntent.putExtra(NotificationPublisher.NOTIFICATION, getNotification(launches.get(i).getRocket().getName(), launches.get(i).getLocation().getPads().get(0).getName()));
PendingIntent pendingIntent = PendingIntent.getBroadcast(this, 0, notificationIntent, 0);
AlarmManager alarmManager = (AlarmManager) getSystemService(Context.ALARM_SERVICE);
//Debug. Schedule at 2, 4, 6 minutes.
if (i == 0) {
alarmManager.set(AlarmManager.RTC_WAKEUP, System.currentTimeMillis() + 120000, pendingIntent);
}
if (i == 1) {
alarmManager.set(AlarmManager.RTC_WAKEUP, System.currentTimeMillis() + 240000, pendingIntent);
}
if (i == 2) {
alarmManager.set(AlarmManager.RTC_WAKEUP, System.currentTimeMillis() + 360000, pendingIntent);
}
}
}
private Notification getNotification(String rocketName, String padName) {
Notification.Builder builder = new Notification.Builder(this);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, new Intent(this, MainActivity.class), 0);
builder.setContentIntent(pendingIntent);
builder.setContentTitle("Upcoming Launch");
builder.setContentText("A launch of a " + rocketName + " is about to occur at " + padName + ". Click for more info.");
builder.setSmallIcon(R.drawable.rocket_icon);
return builder.build();
}
广播接收器:
public class NotificationPublisher extends BroadcastReceiver {
public static String NOTIFICATION_ID = "notification_id";
public static String NOTIFICATION = "notification";
public void onReceive(Context context, Intent intent) {
NotificationManager notificationManager = (NotificationManager)context.getSystemService(Context.NOTIFICATION_SERVICE);
Notification notification = intent.getParcelableExtra(NOTIFICATION);
int id = intent.getIntExtra(NOTIFICATION_ID, 0);
notificationManager.notify(id, notification);
}
}
我想知道为什么只显示一个通知,以及我需要添加什么才能实现前面所述的目标。
当您使用 AlarmManager
设置闹钟时,它会自动取消任何具有匹配 PendingIntent
的现有闹钟。由于您的所有 PendingIntent
都包含相同的组件,因此每次设置闹钟时,之前设置的闹钟都会自动取消。
如果要设置多个闹钟,必须确保每个 PendingIntent
都是唯一的。您可以通过以下方式之一执行此操作:
- 对每个
PendingIntent
使用不同的 - 在传递给
PendingIntent.getBroadcast()
的Intent
中为每个PendingIntent
使用不同的 ACTION
requestCode
(PendingIntent.getBroadcast()
的第二个参数)