10-15-2012 05:21 AM
Hi,
I have an issue where if my app displays a new screen while the display is off then the user has to activate the screen themselves so they can see the new screen. Is there a way for my app to programatically turn the display on when a new screen is displayed?
Regards,
Ben
10-15-2012 05:26 AM
You mean backlight time,
If Yes try with this on starting of your new screen.
Thanks.
10-15-2012 05:29 AM
That would enable me to stop the display turning off, but I can I turn it on once it has gone off?
10-15-2012 05:32 AM
I think you can try like this
if(!Backlight.isEnabled())
Backlight.enable( true);
Thanks.
10-15-2012 07:55 AM
I think that works if the display is just off, what about if the handset has been locked? Is there anyway to prorammatically unlock the handset so a screen can be displayed?
10-15-2012 09:13 AM
AFAIK there is no way to unlock,
But you can find it using,
ApplicationManager.isSystemLocked
Thanks.