I have to use the wakelock (yes I shouldn't for the obvious reasons but I'm being paid to do it so I don't have a choice lol)

my question is very simple: when I leave the app onPause or onStop, is the wake lock of the app automatically released ?

I want to avoid the user closing his app and the wake lock is still on for some weird reason.

I'm having an issue with my current system where the app is calling up the release wake lock through a message handler (because its coming from another thread) and this happens "too late" and the app crashes because it does no longer have the reference to the wake lock.

I might not be very clear but the main question here is :

do I have to worry about the wake lock of my app affecting the phone outside the life cycle of the app.

cheers

Jason

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

my question is very simple: when I leave the app onPause or onStop, is the wake lock of the app automatically released ?

Nope. Which is why you should use android:keepScreenOn in an activity rather than a WakeLock.

do I have to worry about the wake lock of my app affecting the phone outside the life cycle of the app.

Absolutely. Until you release that WakeLock, the phone will not fall asleep.

link|improve this answer
what I really need to do is release the wake lock in the onPause method every time? – Jason Rogers Aug 2 '11 at 16:23
1  
@Jason Rogers: Again, it would be better to use android:keepScreenOn. – CommonsWare Aug 2 '11 at 19:19
feedback

When your application is no longer the focus the wake lock is cancelled, only when your application is the focus is the wake lock in affect.

link|improve this answer
This is incorrect AFAIK. If you have a sample application that demonstrates this, please post a link! – CommonsWare Aug 2 '11 at 16:10
feedback

Your Answer

 
or
required, but never shown

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