I have question about wakelock. In cases shown below, does android OS release wakelock (PARTIAL_WAKE_LOCK if you need to specify) to prevent wakelock was left acquired and wasting battery until turning power off (not sleep).

Case 1-a: App has acquired wakelock (w/o timeout option) in one of it's thread (please think it is reasonable in this case) and it was designed to release wakelock when critical task was finished. App can be killed by taskmanager or notorious taskkiller, and app has no chance to let it's thread to release wakelock. What happens to that wakelock?

Case 1-b: (If answer to case 1-a is "Yes, don't worry, then please ignore this case.) Same as case 1-a but app gave timeout option to wakelock, say 3 seccond. Is this timeout option kept valid?

Case 2-a: Please imagine there is a service which was started by AlarmManager (via Broadcast receiver) and the service has acquired wakelock (w/o timeout option). This service is designed to make wakelock-acquired-time minimum. But unfortunately, Android OS picked this service to kill due to memory crunch. (I don't know OS won't kill service when wakelock is acquired or not, but I guess OS won't take care of it. But I hope OS will release wakelock later.) What happens to that wakelock?

Case 2-b: (If answer to case 2-a is "Yes, don't worry, then please ignore this case.) Same as case 2-a but service gave timeout option to wakelock, say 3 seccond. Is this timeout option kept valid?

link|improve this question

29% accept rate
feedback

2 Answers

I would assume (I don't know this for certain) the Android system does not keep wakelocks for killed processes. Most likely when it kills a process with sigkill it also removes any wakelocks held by that process.

Otherwise, as you say, crashes would lead to the phone always being awake, which I have not observed.

link|improve this answer
It sounds reasonable to me. I guess you are right. I hope SDK clearly describes this behavior. – Tomcat Apr 6 '11 at 1:43
I also found timeout for wakelock has bug [link]code.google.com/p/android/issues/detail?id=14184 so we can't use it in efficient way. (I tried it with OS2.2 and failed, then Google led to that link.) – Tomcat Apr 6 '11 at 1:56
1  
A simple test would be to make an application which sets a keep screen on wakelock, then have a button in the app which intentionally causes an FC. Then just wait and see if the screen turns off or not. – Joseph Earl Apr 6 '11 at 22:59
feedback

WakeLock is an Inefficient way of keeping the screen on. Instead use the WindowManager to do the magic. The following one line will suffice the WakeLock. The WakeLock Permission is also needed for this to work. Also this code is efficient than the wakeLock.

getWindow().addFlags(LayoutParams.FLAG_KEEP_SCREEN_ON);

You need not relase the WakeLock Manually. This code will allow the Android System to handle the Lock Automatically. When your application is in the Foreground then WakeLock is held and else android System releases the Lock automatically.

There are also other types of Locks, you can combine a few of them with this, to improve functionality. In all your 3 cases,Android System will handle the wakeLock funtion automatically

link|improve this answer
What if he needs to do work in a Service? Also I don't see how using the FLAG_KEEP_SCREEN_ON flag is more efficient, it is just easier because Android manages releasing the lock. Also it keeps the screen on, which is often not what you want with a wakelock, you just want to stop the CPU sleeping. – Joseph Earl Apr 5 '11 at 7:47
Yup.. Forgot to mention that this could not be used with a service... this is applicable only to applications that need wakelock exclusively... Thanks for reminding @Joseph Earl – AndroidKid Apr 5 '11 at 8:35
Yes I'm using WakeLock (PARTIAL_WAKE_LOCK) in service. – Tomcat Apr 6 '11 at 1:48
Why is using WakeLock inefficient? – dacongy Apr 26 at 19:54
feedback

Your Answer

 
or
required, but never shown

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