I am an android developer.I am making an application in which I have to take user input like 8:00,9:00,10:00 etc and I have to set alarm for 20 or 30 days for each time user enter .A user can enter two or three or any times the timings.I know there is a function

alarm.setRepeating(AlarmManager.RTC,System.currentTimeMillis()+timeinminutes*60*1000,30*1000, pintent);

But I have to set the alarm for ever or days entered by user .So can any body tell me .How can I do this .

link|improve this question

69% accept rate
feedback

2 Answers

up vote 0 down vote accepted

the following code help you,firstWake the app will run at very fast time,you can specify as your requirements

AlarmManager am = (AlarmManager)context.getSystemService(Context.ALARM_SERVICE); long interval = android.text.format.DateUtils.DAY_IN_MILLIS*20;//or 30 long firstWake = System.currentTimeMillis() ; am.setRepeating(AlarmManager.RTC,firstWake, interval, pendingIntent);

link|improve this answer
Sir I have used your code but it is only working after 20 days.Can you give me instruction .I think you know my question.Can you help me. If you need some more details. I can tell you. – Nitin Aug 4 '11 at 13:18
Hi Nitin,the above will work for every 20 or 30 days,give some clarity,you asked it for 20 or 30 days.is not it?,all you need to develop a better logic only. – sunriser Aug 5 '11 at 17:03
I want it to work every day and restrict it for 20 days . – Nitin Aug 6 '11 at 5:04
do you mean that it work every day upto 20 days?If it is then implement the logic for 1 day(instead of 20 days) and put a count variable store it in SharedPreference class(see developer.android.com/guide/topics/data/… this variable count reaches 20, stop to call that alaram method. – sunriser Aug 8 '11 at 6:12
But I think it will not work for me.Because user can enter timing any times.So how much count variable I should use how would i know . – Nitin Aug 8 '11 at 9:39
show 2 more comments
feedback

Maybe you can use another nonrepeating alarm for 20 or 30 days that stops repeating alarms.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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