I've an activity that, on its onPause has to do some work but not when the screen is turned off. I've already registered the receiver for the ACTION_SCREEN_OFF intent and, theoretically, this and a static flag at application level should do the trick but... It doesn't work because the onPause callback on the activity is invoked BEFORE the receiver can get its Intent. That is: logcat*ting* while push down the idle button, i can see the onPause trace first and the onReceive after. At this point, setting up the static flag is not very important...

Any possibilities to know at activity's onPause time that the screen has turned off?

Thanks in advance
L.

link|improve this question

78% accept rate
Surely onPause is called then the screen goes off. What is wrong with that? – Blundell Dec 16 '11 at 17:01
Nothing if you need to do some work every time onPause is invoked. Unfortunately I have to do that job in onPause only if the screen is NOT turned off. So the question is: how do I realize in time that the screen is gone? BroadcastReceiver is not good: it is too slow... – lorenzoff Dec 16 '11 at 17:11
1  
What job do you need to do that occurs STRICTLY if the screen is on? onPause is called when the display has been retracted from the user, implictly (figuratively and effectively) meaing the screen is "off". I'm am not seeing why it matters if the screen is off to do this job. – AedonEtLIRA Dec 16 '11 at 17:18
1  
Non, work related, but I love the title. It's so... dramatic. ;-) – AedonEtLIRA Dec 16 '11 at 17:19
1  
You could override the idle key, then in your app you can do whatever you need to do and then darken the screen if you need using this method: stackoverflow.com/questions/6756768/turn-off-screen-on-android – Jakar Dec 16 '11 at 21:40
show 3 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.