How to find whether phone is in sleep/idle mode for Android

后端 未结 4 1808
离开以前
离开以前 2020-12-05 16:39

How to find whether phone is in sleep/idle mode for Android?

My problem is I am able to wake up the phone from sleepmode by using alarm manager

But when the

4条回答
  •  北荒
    北荒 (楼主)
    2020-12-05 17:24

    Check out isInteractive()

    PowerManager pm = (PowerManager) context.getSystemService(Context.POWER_SERVICE);
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT_WATCH) {
      return pm.isInteractive();
    } else {
      return pm.isScreenOn();
    }
    

提交回复
热议问题