Disable keep screen on

后端 未结 4 1461
难免孤独
难免孤独 2020-12-02 21:44

I used:

getWindow().addFlags(android.view.WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);

How do I resume to Default state (no-keep-on)?

相关标签:
4条回答
  • 2020-12-02 22:23

    I think this should do it:

    getWindow().clearFlags(android.view.WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
    

    See API for details.

    0 讨论(0)
  • 2020-12-02 22:26

    Another approach

    getWindow().setFlags(this.getWindow().getFlags() & ~WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
    

    Also read this

    and you can also set android:keepScreenOn="true" in the root View in xml.

    0 讨论(0)
  • 2020-12-02 22:26

    Directly from documentation:

    Note: You don't need to clear the FLAG_KEEP_SCREEN_ON flag unless you no longer want the screen to stay on in your running application (for example, if you want the screen to time out after a certain period of inactivity). The window manager takes care of ensuring that the right things happen when the app goes into the background or returns to the foreground. But if you want to explicitly clear the flag and thereby allow the screen to turn off again, use clearFlags(): getWindow().clearFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON).

    0 讨论(0)
  • 2020-12-02 22:31

    If you instead set a flag android:keepScreenOn="true" (documentation) only on the views that need to keep the screen on, you wouldn't need to reset the flag manually.

    0 讨论(0)
提交回复
热议问题