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 need to stop my alarm after 20 days or it may be "n" days. So anyone please help me.

Intent myIntent = new Intent(this, MyAlarmService.class);

    pendingIntent = PendingIntent.getService(this, (int) System.currentTimeMillis(), myIntent, 0);



    AlarmManager alarmManager = (AlarmManager)getSystemService(ALARM_SERVICE);

    Calendar calendar = Calendar.getInstance();
    calendar.set(Calendar.HOUR_OF_DAY, hour1);
    calendar.set(Calendar.MINUTE, min1);  
    calendar.set(Calendar.SECOND, 0);  

    //  alarmManager.set(AlarmManager.RTC_WAKEUP, calendar.getTimeInMillis(), pendingIntent);


    alarmManager.setRepeating(AlarmManager.RTC_WAKEUP, calendar.getTimeInMillis(), 24*60*60*1000, pendingIntent);

    Toast.makeText(this, "Start Daily Alarm", Toast.LENGTH_LONG).show(); 

    // add days to current date using Calendar.add method 

    calendar.add(Calendar.DATE, 20);       

    pendingIntent = PendingIntent.getService(this,  REQUEST , myIntent, 0);

    AlarmManager alarmManagerstop = (AlarmManager)getSystemService(ALARM_SERVICE);
    alarmManagerstop.cancel(pendingIntent);     
share|improve this question
Use Sqlite Database to Store Calender Event and Broadcase Receiver Class & After 20 Days Delete event from the Database. – Dipak Keshariya Sep 13 '11 at 6:12
Post the code you are using to start the alarm. What you wrote isn't clear. You haven't used the calendar object anywhere. – Gaurav Sep 13 '11 at 6:15
ok i will edit my question with code. – sachi Sep 13 '11 at 6:20

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.