0

我正在使用它来测试日期是否等于今天的日期。我的项目是从 HTML 解析的

while(postIt.hasNext)

它一直持续到没有剩下的为止。

 if(itemDate.contains(todaysDay)){ 
     System.out.println(i);
     nm = (NotificationManager) this.
             getSystemService(Context.NOTIFICATION_SERVICE);
     CharSequence from = "App";
     CharSequence message = nameItem3 + "Today is the day!";
     PendingIntent contentIntent = PendingIntent.getActivity(
             this, 0, new Intent(this, HtmlparserExample.class), 0);
     Notification notif = new Notification(R.drawable.icon, 
             nameOfItem + "Today is the day!!", System.currentTimeMillis());
     notif.setLatestEventInfo(this, from, message, contentIntent);
     nm.notify(1, notif);
  }

我想要做的是测试是否有多个项目等于今天的日期。如果是这样,我想做点什么。

我将如何跟踪今天有多少项目?

我想要发生的是,当物品被检索时,如果超过 1 个物品等于今天,它们会被测试,它会显示不同的通知。

现在发生的事情是它一个接一个地显示与今天具有相同日期的每个项目的通知。

或者其他可行的方法是我可以为每个人显示一个通知吗?我怎么也能这样做?

比。它覆盖每个并显示一个新的?

4

1 回答 1

1

将满足测试的 itemDate 实例存储在数组中,并根据数组的内容在 while 循环外通知用户。

编辑

ArrayList<ItemDate> itemDates = new ArrayList<ItemDate>();
while(postIt.hasNext){
    /* Do stuff */
    if(itemDate.contains(todaysDay)){
        itemDates.add(itemDate);
        /* Do stuff, not notifying */
    }
}

/* Notify using instances in itemDates */
于 2011-08-28T14:53:27.603 回答