Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
Intent intent = new Intent(this, Passive.class);
        PendingIntent pendingIntent = PendingIntent.getService(this, 50000,
                intent, 0);
        AlarmManager am = (AlarmManager) getSystemService(Context.ALARM_SERVICE);
        am.setRepeating(AlarmManager.RTC_WAKEUP,
                System.currentTimeMillis() + 1000, 3600000, pendingIntent);

That's the code I am using, it originally got the repeat time from a shared setting but even when I hard code it is still repeating every 60 seconds instead of the specified time.

It might be worth mentioning, I am not experiencing this issue on my Tablet, just my HTC One X.

share|improve this question

2 Answers

use this one before setting alarm--

  PendingIntent pendingIntent = PendingIntent.getService(this, 50000,
            intent, PendingIntent.FLAG_NO_CREATE);

   //Cancelling the PendingIntent in the AlarmManager If it is already exist

   if(pendingIntent != null) {
       am.cancel(pendingIntent);
      pendingIntent.cancel();  
   }
share|improve this answer
Thanks for the response, I am still getting 60 seconds repeats. – JamieB Jan 21 at 18:01
are you changing the UNIQUE ID - 50000 ( for your case ) every next time ? – GOLI Jan 21 at 18:13
No this is kept the same each time. I am only getting this issue on the mobile phone, the tablet is working fine. – JamieB Jan 21 at 18:43
Its quite interesting ...!! Oh I seen your reply...after full uninstall , It started working...good..!! – GOLI Jan 22 at 5:07
up vote 0 down vote accepted

The phone required a full uninstall and re install of the application and now the correct behavior is shown.

share|improve this answer

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.