On Thu, Jul 15, 2010 at 8:20 AM, Jake Colman <[email protected]> wrote: > What does it mean with RTC that the pending intent is fired but the > device does not wake up as opposed to RTC_WAKEUP where device does wake > up? If the device does not wakeup does that mean, simply, that the > screen does not turn on but that my code still executes?
No, it means that if the phone is asleep, the alarm does not fire. The alarm will fire when the phone wakes up. http://developer.android.com/reference/android/app/AlarmManager.html "This alarm does not wake the device up; if it goes off while the device is asleep, it will not be delivered until the next time the device wakes up." -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _Android Programming Tutorials_ Version 2.9 Available! -- You received this message because you are subscribed to the Google Groups "Android Beginners" group. NEW! Try asking and tagging your question on Stack Overflow at http://stackoverflow.com/questions/tagged/android To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en

