I have a signal that puts my app to sleep for a given number of minutes (using AlarmManager) and then wakes it back up.

Everything is working except the screen doesn't ever come on. I'm using a wakelock like so from a BroadcastReceiver class:

     KeyguardManager key = (KeyguardManager) context.getSystemService(Context.KEYGUARD_SERVICE);
     KeyguardLock lock = key.newKeyguardLock(TAG);
     lock.disableKeyguard();
     Log.v(TAG, "alarm: disabled keyguard.");

     PowerManager pm = (PowerManager) context.getSystemService(Context.POWER_SERVICE);
     gpsMain.wl = pm.newWakeLock(PowerManager.SCREEN_BRIGHT_WAKE_LOCK, TAG);
     gpsMain.wl.acquire();
     Log.v(TAG, "alarm: acquired wakelock");

     Intent i = new Intent();
     i.setAction(CUSTOM_INTENT);
     context.sendBroadcast(i);

I then release the wakelock when I'm sure that my app is up and running and connected again. However, the screen never comes on! The app only actually comes back to life when I hit the power button to wake up the screen manually.

I'm developing on an HTC Hero. Any assistance would be GREATLY appreciated..

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

You need to use the ACQUIRE_CAUSES_WAKEUP flag.

link|improve this answer
Yes, I changed my lock to use PowerManager.ACQUIRE_CAUSES_WAKEUP in addition to FULL_WAKE_LOCK. I'm also using AlarmManager.RTC_WAKEUP, which is supposed to wake up the phone when the alarm goes off. Still no luck though... – Tom G Sep 11 '10 at 13:53
@Tom G: Hmmmm...that's odd. I just had an email exchange this week with somebody on the android-developers list, who said that this worked for him. I am a bit confused about your symptoms: is it that your code runs but the screen does not light up, or is your code not running at all? – CommonsWare Sep 11 '10 at 14:53
So, I think I solved it. I was acquiring the wakelock in the broadcastreceiver that the alarm calls, but I was releasing it back in my main thread. I moved the release to teh end of the onReceive function and now it seems to be working. – Tom G Sep 11 '10 at 15:06
@Tom G: You may have made the same mistake I did the first time I used WakeLocks. I looked at the tag to be passed into newWakeLock() and thought it was a key -- the same app requesting the same key twice would get the same WakeLock object. That's not how it works. That's just a name for logging purposes. To pass WakeLocks between components, the only option right now is (sigh) mutable static data members. For example, my WakefulIntentService supports this: github.com/commonsguy/cwac-wakeful – CommonsWare Sep 11 '10 at 15:16
feedback

please also check my answer here Wake Android Device up

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.