prevent mobile from going into sleep mode when app is running

后端 未结 3 938
礼貌的吻别
礼貌的吻别 2021-01-18 04:52

I want to prevent Android Mobile from going into sleep mode when my threads are sending HTTP request. as what happened while threads are doing HTTP calls mobiles goes to sle

3条回答
  •  攒了一身酷
    2021-01-18 05:08

    for JAVA: getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
    for KOTLIN: window.addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON)
    Use this code, it will keep your device wake up and you didn't need any permission.

提交回复
热议问题