I get stuck with something that , I guess , is very trivial. Basically I am scheduling alarm for a given moment in the future :

Intent contentIntent = new Intent(this, AlarmReceiver.class); 
PendingIntent theappIntent = PendingIntent.getService(Main.this, 0,contentIntent, 0); 
Calendar calendar = Calendar.getInstance();
calendar.set(year, month, day, hour,minute); 
AlarmManager am = (AlarmManager) getSystemService(ALARM_SERVICE);
am.set(AlarmManager.RTC_WAKEUP, calendar.getTimeInMillis(), theappIntent); 

works fine while mobile is constantly on. My problem is that alarm is not triggered after mobile is restarted and is TURNED ON on the expected time. Is there something I missed? Should I do some extra work to keep alarm scheduled after restart?

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

You have to reset the alarm when device get boot. You are missing to detect the app when device boot and reset the alarm..so below is code written in manifest

<receiver android:name=".YourReceiver">
            <intent-filter>
                <action android:name="android.intent.action.BOOT_COMPLETED" />
            </intent-filter>
        </receiver>

   <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />

Also create a BroadcastReceiver to receive the boot completed intent

 public class YourReceiver extends BroadcastReceiver {


         Context ct;

         @Override
         public void onReceive(Context context, Intent intent) {
             ct=context;
             if(intent.getAction().equals("android.intent.action.BOOT_COMPLETED"))
             {
           // Reset your alarm here
Intent contentIntent = new Intent(ct, AlarmReceiver.class); 
PendingIntent theappIntent = PendingIntent.getService(ct, 0,contentIntent, 0); 
Calendar calendar = Calendar.getInstance();
calendar.set(year, month, day, hour,minute); 
AlarmManager am = (AlarmManager) ct.getSystemService(ALARM_SERVICE);
am.set(AlarmManager.RTC_WAKEUP, calendar.getTimeInMillis(), theappIntent); 
    }
    }
link|improve this answer
I am using service for alarms. Is it ok. @maneesh – sachi Nov 18 '11 at 7:19
Itz ok ..Just add an broadcast receiver in your project file. it will work fine – Hardik4560 Nov 18 '11 at 7:21
@sachi You can do it with broadcast receiver easily so why to use service?? – Pavan More Nov 18 '11 at 7:23
I have added broadcast reciever also. I will put my broad cast code here check it. – sachi Nov 18 '11 at 7:23
ITs ok to create service for alarms but you create a BroadcastReceiver which detect when device boots and again have create alarm – Maneesh Nov 18 '11 at 7:24
show 5 more comments
feedback

do like this

Calendar alarm = Calendar.getInstance();
    alarm.set(Calendar.HOUR_OF_DAY, hourOfDay);
    alarm.set(Calendar.MINUTE, minute);
    long alarmMillis = alarm.getTimeInMillis();
    Intent intent = new Intent(ctx, AlarmReceiver.class);
    PendingIntent pendingIntent = PendingIntent.getBroadcast(this, 192837, intent, 
                                              PendingIntent.FLAG_UPDATE_CURRENT);
    AlarmManager am = (AlarmManager) getSystemService(ALARM_SERVICE);
    am.set(AlarmManager.RTC_WAKEUP, alarmMillis , pendingIntent); 

and add this in Manifest file

<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/> 
link|improve this answer
feedback

You should add an receiver For listening android.intent.action.BOOT_COMPLETED and start your alarm from there.

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.