Im using the following code to adjust the brightness of the screen:

public void SetBright(float value) {
    Window mywindow = getWindow();
    WindowManager.LayoutParams lp = mywindow.getAttributes();

    lp.screenBrightness = value;
    mywindow.setAttributes(lp);        
}

But i want the brightness to be 0% for a specific time. But when i use SetBright(0.0f), i cant change it back. I made a timer that runs for a minute with 0% brightness, then turns it back to 100%. Works when i use 10% for example. But when i turn it to 0% i cant seem to wake it up again. Any ideas how to solve this?

link|improve this question

23% accept rate
1  
Thanks but "Device battery life will be significantly affected by the use of this API". Is there any other way? – Johan Jan 8 '11 at 13:29
As per i know if you wanna keep screen brighten then it always use battery to keep it bright. Right??? – Harry Joy Jan 8 '11 at 13:31
Yes, but i want sure if they were refering to the screen beeing on. Anyway, i get an error "java.lang.RuntimeException: Wakelock under-locked My tag". Any clue what might be wrong? – Johan Jan 8 '11 at 13:46
feedback

1 Answer

Trying to adjust the brightness of the screen too, I found that when I adjust it to 0 I face a similar problem too. My solution (hopefully temporary), is to forbid values that are lower than 10% (0.1f).

Don't it looks like a bug in the API ?

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.