I am trying to turn on and off the display after a certain action happens (Lets just worry about turning the screen off for now). From what I understand from wake lock, this is what I have:

PowerManager pm = (PowerManager) getSystemService(Context.POWER_SERVICE);    
PowerManager.WakeLock wl = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "My Tag");

When I read other posts on stackoverflow and else where, they seem to tell me that PARTIAL_WAKE_LOCK will turn the screen off. But if I read the SDK it says that it will only allow the screen to be turned off. So I think this isn't right.

Any hints would be helpful! Thanks,

Mike

link|improve this question

73% accept rate
feedback

2 Answers

up vote 3 down vote accepted

There are two choices for turning the screen off:

PowerManager manager = (PowerManager) getSystemService(Context.POWER_SERVICE);

// Choice 1
manager.goToSleep(int amountOfTime);

// Choice 2
PowerManager.WakeLock wl = manager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "Your Tag");
wl.acquire();
wl.release();

You will probably need this permission too:

<uses-permission android:name="android.permission.WAKE_LOCK" />

UPDATE:

Try this method; android turns off the screen once the light level is low enough.

WindowManager.LayoutParams params = getWindow().getAttributes();
params.flags |= LayoutParams.FLAG_KEEP_SCREEN_ON;
params.screenBrightness = 0;
getWindow().setAttributes(params);
link|improve this answer
In my experience these methods are highly unreliable. – Jon Willis Jul 20 '11 at 5:05
Hi Arash, When i try the first choice I get a force close. I tried debugging it but that doesn't seem to work either. I just manager.goToSleep(1000); I am not sure what the 1000 means. When I try choice 2, i get nothing to happen. Are we sure that this will actually turn off the display? or will it just prevent from anything else turning off the display. I alos have the permissions set in the manifest. Thanks for your help – thegreyspot Jul 20 '11 at 23:14
Thanks, this does turn the screen off! However, when my timer runs and the brightness is restored, all i see is a Blank screen with the backlight on. Any Idea what thats happening? Thanks so much again! – thegreyspot Jul 20 '11 at 23:53
You might be increasing the brightness too much since it is supposed to be a value between 0 and 1. I recommend you first store the value of the original screen brightness (as a float/double) and then change the value. Then, when the phone is turned on, it can be returned to its original value. – Arash A. Jul 21 '11 at 0:36
Also, setting a value of less than 0, sets the brightness to the default (preferred screen brightness). – Arash A. Jul 21 '11 at 0:45
show 3 more comments
feedback

The following is copied from SDK document. If you want to keep screen on, I think SCREEN_BRIGHT_WAKE_LOCK is enough.


Flag Value                CPU   Screen  Keyboar

PARTIAL_WAKE_LOCK          On*    Off      Off

SCREEN_DIM_WAKE_LOCK On    Dim     Off

SCREEN_BRIGHT_WAKE_LOCK    On     Bright    Off

FULL_WAKE_LOCK             On   Bright  Bright

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.