I have an alarm set to go off everyday at 8:00 oclock with this code.
String alarm = Context.ALARM_SERVICE;
Calendar calendar = Calendar.getInstance();
calendar.set(Calendar.HOUR_OF_DAY, 8);
calendar.set(Calendar.MINUTE, 0);
calendar.set(Calendar.SECOND,0);
calendar.set(Calendar.MILLISECOND, 0);
AlarmManager am = (AlarmManager)getActivity().getSystemService(alarm);
Intent intent = new Intent("NEW_ITEM");
PendingIntent sender = PendingIntent.getBroadcast(getActivity(), 0, intent, 0);
am.setRepeating(AlarmManager.RTC_WAKEUP, calendar.getTimeInMillis(), AlarmManager.INTERVAL_DAY, sender);
Log.e("RELEASE LIST", "ALARM Set For 1 day from " + calendar.getTimeInMillis());
The only problem is the alarm goes off more than once. I dont want this. As it can be very annoying for the same message to keep reoccurring. Is there something in my code i am missing or need to do to fix this?
EDIT:
if(doc != null){
item = doc.select("tr> td.indexList1, tr > td.indexList2");
if(item != null){
// Iterator over those elements
ListIterator<Element> postIt = item.listIterator();
while (postIt.hasNext()) {
Element name = postIt.next();
nameOf = name.text();
form = postIt.next().text();
Element url = name.select("a").first();
urlString = url.attr("href");
genre = postIt.next().text();
Date = postIt.next().text();
Log.v("Dates", Date);
if(Date.contains(dayOfMonth)){
i++;
}
}
}
}
return null;
}
@Override
protected void onPostExecute(Void notUsed){
if(i == 0){
}
else{
if(i==1){
nm = (NotificationManager) ReleaseService.this
.getSystemService(Context.NOTIFICATION_SERVICE);
CharSequence from = "GameIT";
CharSequence message = "You have "+i +" Today!";
PendingIntent contentIntent = PendingIntent.getActivity(gameReleaseService.this, 0, new Intent(ReleaseService.this, Htmlparser.class), 0);
Notification notif = new Notification(R.drawable.icon,
"You have "+i +" Released Today!" , System.currentTimeMillis());
notif.defaults |= Notification.DEFAULT_VIBRATE;
notif.setLatestEventInfo(ReleaseService.this, from, message, contentIntent);
nm.notify(i, notif);
}else{
nm = (NotificationManager) ReleaseService.this
.getSystemService(Context.NOTIFICATION_SERVICE);
CharSequence from = "GameIT";
CharSequence message = +i+ " released today!";
PendingIntent contentIntent = PendingIntent.getActivity(ReleaseService.this, 0, new Intent(ReleaseService.this, Htmlparser.class), 0);
Notification notif = new Notification(R.drawable.icon,
"You have "+i+" that released today!" , System.currentTimeMillis());
notif.defaults |= Notification.DEFAULT_VIBRATE;
notif.setLatestEventInfo(ReleaseService.this, from, message, contentIntent);
nm.notify(i, notif);
}
}
}
goes off more than oncewhat do you mean? what is happening? – Sherif elKhatib Sep 27 '11 at 13:48