I'm trying to set the maximum time to lock with DevicePolicyManager.setMaximumTimeToLock(), but this seems to have no effect. Admin-mode is enabled and lockNow() works without a problem. Is there anything else that needs to be done to use setMaximumTimeToLock() ?

tgr

link|improve this question
Care to explain what you are trying to accomplish with your app? Then people can answer your question appropriately. – B.Young Jul 30 '11 at 22:13
feedback

1 Answer

Are trying to keep your screen from going off? Use this in your onCreate. I believe it has to go before calling setContentView.

getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
link|improve this answer
1  
I'm trying to set the time to lock based on my location. I.e. when at home I want to lock the screen after 60 min, at work after 20 min and so on. I don't want to keep the screen from turning off, I just want to avoid unlocking it (typing my password) to often – tgr Aug 1 '11 at 6:20
feedback

Your Answer

 
or
required, but never shown

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