I have some activities in my application. In main activity I have defined the wake lock:

PowerManager powerManager = (PowerManager)getSystemService(Context.POWER_SERVICE);
wakeLock = powerManager.newWakeLock(PowerManager.FULL_WAKE_LOCK, "My Lock");

and released it in onPause() method. My question is, is it active in the whole of application? or Do I need to copy/paste it in each activity that I have?

Thanks

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

As long as WakeLock is acquired, so long wake lock is held. Related is lifetime of your WakeLock object. And if WakeLock is no more used and it is GC'd while still having lock, it's released during garbage collection (in finalize() method).

So your wake lock is active between acquire() and release(). You must make sure that your code calls these functions when needed from desired activities.

If you want WakeLock globally in your application, extend android.app.Application, specify it in manifest, and manage wake lock on application level.

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.