在Android中調用PowerManager
類的goToSleep()
方法可以讓設備進入睡眠模式。以下是一個示例代碼:
PowerManager powerManager = (PowerManager) getSystemService(Context.POWER_SERVICE);
if (powerManager != null) {
powerManager.goToSleep(SystemClock.uptimeMillis());
} else {
Log.e(TAG, "PowerManager is null");
}
請注意,為了使用PowerManager
類,需要在AndroidManifest.xml文件中添加<uses-permission android:name="android.permission.WAKE_LOCK" />
權限。
另外,需要注意的是,調用goToSleep()
方法需要android.permission.DEVICE_POWER
權限,在Android 19及以上的版本中需要platform
簽名。