Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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);




             }
            }
            }
share|improve this question
goes off more than once what do you mean? what is happening? – Sherif elKhatib Sep 27 '11 at 13:48
After it inially launches at 8 oclock everyday. it them goes off like every other couple of hours or so. – coder_For_Life22 Sep 27 '11 at 13:48
Your code seems correct.. tell us about the Activity show us some code that may be error! Is there anychance that it is retrying? no? – Sherif elKhatib Sep 27 '11 at 14:25
It could be because when the alarm is launched it launches a service that pasrses come content and then sets a notification depending on the content...Im guessing this may be where the error is..something that is making it reloop it self and keep showing the notification. Ill post it in my question – coder_For_Life22 Sep 27 '11 at 14:39
Check out my edit..I thinking something is happening here that keeps relaunching the notification..Or what do you think? – coder_For_Life22 Sep 27 '11 at 14:44
show 14 more comments

3 Answers

up vote 2 down vote accepted
+50
public static Calendar getNextDateNotify(Context context) {
        Calendar cal = Calendar.getInstance();
        cal.setTimeInMillis(System.currentTimeMillis());
        int dayOfMonth = Calendar.getInstance().get(Calendar.DAY_OF_MONTH);
        if (dayOfMonth < 15) {
            cal.set(Calendar.DAY_OF_MONTH, 15);
        } else {
            cal.set(Calendar.DAY_OF_MONTH, 1);
            cal.add(Calendar.MONTH, 1);
        }
        //cal.set(Calendar.HOUR_OF_DAY, 12); //?
        int hour = generateRandomFromTo(9, 20);
        if (hour < 12) {
            cal.set(Calendar.AM_PM, Calendar.AM);
            cal.set(Calendar.HOUR, hour);
        } else {
            cal.set(Calendar.AM_PM, Calendar.PM);
            cal.set(Calendar.HOUR, (hour - 12));
        }
        cal.set(Calendar.MINUTE, 0);
        cal.set(Calendar.SECOND, 0);
        // SimpleDateFormat df=new SimpleDateFormat("dd/MM/yyyy h:mm a");
        // Log.d("TAG", df.format(new Date(cal.getTimeInMillis())));
        return cal;
    }

But this method only for my purposes. For yours you must modify it.

share|improve this answer
SO basically mine would be cal.set(Calendar.HOUR_OF_DAY, 8); is that all or would i need more like yours? – coder_For_Life22 Sep 29 '11 at 14:29
cal.set(Calendar.HOUR_OF_DAY, 12); cal.set(Calendar.AM_PM, Calendar.PM); or cal.set(Calendar.AM_PM, Calendar.AM); cal.set(Calendar.HOUR, 8); cal.set(Calendar.MINUTE, 0); cal.set(Calendar.SECOND, 0); cal.add(Calendar.DAY_OF_MONTH, 1); //alarm for tomorrow 8:00 am or 8pm – drifter Sep 29 '11 at 14:41
my method for me: 1st and 15th of each month at random time between 9am and 8pm – drifter Sep 29 '11 at 14:43
Why is your hour_of_day 12? – coder_For_Life22 Sep 29 '11 at 14:45
but you must make check for today time to start alarm – drifter Sep 29 '11 at 14:45
show 2 more comments

I suspect you have more than one alarm going on.

Do you check which alarm you are receiving when the event is triggered?

share|improve this answer

I don't know what is your error. Try to use one short alarm and bind it with a receiver where you can restart this one short alarm.

public static void scheduleNextAlarm(Context context) {
    Intent intent = new Intent(context, AlarmReceiver.class);
    PendingIntent sender = PendingIntent.getBroadcast(context, 123454322, intent, PendingIntent.FLAG_UPDATE_CURRENT);
    Calendar cal = getNextDateNotify(context);//modify it for yourself(add one day for calendar object)
    if (cal == null)
        return;
    AlarmManager am = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE);
    am.set(AlarmManager.RTC, cal.getTimeInMillis(), sender);
}

In your receiver

 @Override
    public void onReceive(Context context, Intent intent) {
        Utils.scheduleNextAlarm(context);

I hope this code will be useful for you.

share|improve this answer
I dont get it..Sorry. Could you explain in greater detail how this is related to my problem? – coder_For_Life22 Sep 29 '11 at 12:56
<<After it inially launches at 8 oclock everyday. it them goes off like every other couple of hours or so. – >> With my above code I have not any similar problems.(Above code was for quite different task but maybe this approach will be useful for you.) – drifter Sep 29 '11 at 14:01
What is the getNextDateNotifiy()? – coder_For_Life22 Sep 29 '11 at 14:17
public static Calendar getNextDateNotify(Context context) { Calendar cal = Calendar.getInstance(); cal.setTimeInMillis(System.currentTimeMillis()); int dayOfMonth = Calendar.getInstance().get(Calendar.DAY_OF_MONTH); if (dayOfMonth < 15) { cal.set(Calendar.DAY_OF_MONTH, 15); } else { cal.set(Calendar.DAY_OF_MONTH, 1); cal.add(Calendar.MONTH, 1); – drifter Sep 29 '11 at 14:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.