1

我目前正在調試我的應用程序中的通知問題。對於某些情況,我想要做的是在火箭發射時應該彈出的時間表通知。我正在做的是,在從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); 

    } 

} 

我想知道爲什麼只有一個單一的通知的要求不斷呈現,以及什麼我需要添加實現先前所述的目標。

回答

1

當您使用AlarmManager設置鬧鐘時,它會自動取消任何與PendingIntent匹配的現有鬧鐘。由於您所有的PendingIntent都包含相同的組件,因此每次您設置警報時,之前設置的警報都會自動取消。

如果您想設置多個警報,您必須確保每個PendingIntent都是唯一的。您可以通過以下方式之一進行:

  • 使用不同的requestCode(第二個參數PendingIntent.getBroadcast())每個PendingIntent
  • 使用不同動作Intent傳遞給PendingIntent.getBroadcast()每個PendingIntent
+0

太好了,謝謝。我已經用一個唯一的整數替代了'requestCode'參數(在這種情況下只是'i'的值),現在我得到了多個通知。 – Orbit