this is my code for setting alarm:
public void SetAlarm(Context context, int tag, long time){
AlarmManager am=(AlarmManager)context.getSystemService(Context.ALARM_SERVICE);
Intent i = new Intent(context, Alarm.class);
i.putExtra("position", tag);
PendingIntent pi = PendingIntent.getBroadcast(context, tag, i, PendingIntent.FLAG_CANCEL_CURRENT);
am.set(AlarmManager.RTC_WAKEUP, System.currentTimeMillis()+ time, pi); // Millisec * Second * Minute
}
this is my onRecieve methode:
public void onReceive(final Context context, Intent intent){
PowerManager pm = (PowerManager) context.getSystemService(Context.POWER_SERVICE);
PowerManager.WakeLock wl = pm.newWakeLock(PowerManager.FULL_WAKE_LOCK, "my wak up lo");
wl.acquire();
position = intent.getIntExtra("position", -1);
new PostManager(context, position);
wl.release();
}
this is working well with emulator. at the same time i set an alarm which will trigger after 24 hour in emulator and real device. the work is done by the emulator well, but not in real device. is this happening for PowerManager.FULL_WAKE_LOCK or anything else?
i have tried hard but failed find any solution.
timeis correct in thesetAlarm()method? Add some debug logging and check your logcat to ensure that the alarm is actually being set for the time you think it should be. – David Wasser Mar 4 at 9:12timeis correct because, at the same time i have set alarm in emulator and real device. the alarm should trigger after 4 hour. in emulator it triggered, but not in real device. in real device alarm work well if i set the alarm less than 4 hour. i think my alarm is unable to wake up my device from sleep. – Shoshi Mar 4 at 9:54PowerManager.PARTIAL_WAKE_LOCKinstead ofPowerManager.FULL_WAKE_LOCK, but it doesn't work – Shoshi Mar 4 at 9:55new PostManager(context, position)do? If this is long-running, you need to put it in a service and start your service from the broadcast receiver. You should also add logging to youronReceive()method and look at the logcat after 4 hours. You can then determine if youronReceive()method is being called. Yous don't need to get a wake lock in theonReceive()method because Android will keep the phone awake until that method completes (unless it takes too long in which case Android will just kill it). – David Wasser Mar 4 at 10:25