Is it possible in an acitvity override the callback called when the power button is pressed? My target is to prevent the screen off.
I found this - How to hook into the Power button in Android? -but it seems don't work.
THX
Is it possible in an acitvity override the callback called when the power button is pressed? My target is to prevent the screen off.
I found this - How to hook into the Power button in Android? -but it seems don't work.
THX
You can keep the screen on with a wake lock: http://developer.android.com/reference/android/os/PowerManager.html
But you should be carefull with it because it really drains the battery.