I'm writing an Android app that mostly communicates with the user via status bar notifications. However, I would like to not bother the user if s/he is not really directly interacting with their phone. For example, if the user is using the navigation app or watching a movie. I think that the commonality between all (or most) of these kind of apps is that they keep the screen on. I believe an app can keep the screen on by using a WakeLock or by specifying a keepScreenOn parameter on their activity, there might be other ways.

I wanted to know if, before I am about to show a notification, I can check if another application is keeping the screen on so I can avoid bothering the user. I'd like to cover all options. I can see that WakeLock has an isHeld() method, but will that detect the other method?

Thank you,

link|improve this question

67% accept rate
feedback

3 Answers

I think the best you can get is PowerManager.isScreenOn();

link|improve this answer
Yeah, the problem with that is that I don't know if the screen is on because the user is click around, or because the application is keeping it on. – oneself Oct 11 '11 at 17:54
Right, I know. But what's the fundamental difference? If you don't want to interrupt the user, does it matter if he is clicking around, or if the screen is being held by an application? – AedonEtLIRA Oct 11 '11 at 17:58
feedback

Acquire screen bright wakelock with ACQUIRE_CAUSES_WAKEUP flag. U have to acquire this wakelock bcoz it will force the screen to turn ON if its not. Even if the screen is already ON, one can not guarantee it will remain ON till ur application is running unless u acquire the wakelock. Dont forget to release the wakelock when u r done.

link|improve this answer
feedback

I think you can just post notifications on status bar regardless of state - applications requiring full user attention will typically disable display of status bar altogether - so no harm will be done by your updates.

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.