I have an app which is used for lets say 4 hours, but only every 5 minutes a user needs to make an input or read the screen. Putting the phone to sleep and locking the screen is a bit annoying. So I have two options:

1. getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);

which doesn't lock the screen but the screen is always bright, I would like to dim it while there is no activity. Just because of battery life span, or doesn't that matter that much for these 4 hours?

2. a wake lock SCREEN_DIM_WAKE_LOCK which does as well what I want, but I was told rather to use option 1 above.

Can I achieve the wanted somehow without a wake lock?

Thanks, A.

link|improve this question

76% accept rate
feedback

2 Answers

up vote 7 down vote accepted

You can use:

WindowManager.LayoutParams lp = getWindow().getAttributes();  
lp.dimAmount=1.0f; 
dialog.getWindow().setAttributes(lp);  

to dim/undim the screen when you want to.

lp.dimAmount=1.0f will dim the screen totally but you can set it at your will with values from 0 (no dim at all) to 1.0f.

You can set a timer to call this after 5 minutes of inactivity and then turn the screen "back on" on any touch event or such maybe.

link|improve this answer
feedback

Even a dim screen consumes a significant amount of battery over a time like 4 hours. You really don't want to keep the screen on like that. I think you would be better off using FLAG_SHOW_WHEN_LOCKED, allowing the screen to turn off, but for the user to immediately go in to your app when turning it back on without having to first go through the lock screen.

If you really need to keep the screen dim, you can use a SCREEN_DIM_WAKE_LOCK. If you want more control, you could also try directly setting the screen brightness with WindowManager.LayoutParams.screenBrightness.

link|improve this answer
not bad, but it has a "funny effect": first I wait until the screen goes black, then I tap on the screen I am back in my activity. Perfect so far. I press a button which starts a new activity this brings up the lock screen either until I unlock it or if the second activity has the same flag set then only for half a second and then I am in the second activity. Neither what I want. If that lock screen wouldn't show up for a short moment this would be perfect, any idea how to achieve this? – AndyAndroid Jan 26 '11 at 15:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.