Search code examples
javaandroidbatterypower-management

Android disable display off while charging


In my application I need to disable display power off when device is charging. There is an option in Developer Menu to disable it, so I can to send Intent for user to enable it.

Also I've found info about PowerManager and WakeLocks, but it is for Alarms, I think. And I must to handle, is device charging.

What is the better, or is there another way to do this?


Solution

  • I've do this by that code:

    final boolean isStayAwake = isStayAwakeEnabled(context);
    
    if (!isStayAwake) {
        intent = new Intent(ACTION_APPLICATION_DEVELOPMENT_SETTINGS);
    }
    
    context.startActivity(intent);
    

    There user must check 'stay awake' option

    I've used my own ACTION_APPLICATION_DEVELOPMENT_SETTINGS constant because of problems with default one, which have not "com." prefix