本文主題:
使Android程序運行過程中,屏幕背景燈保持喚醒,即不黑屏。
先上代碼:
注意需要加權限
- <uses-permission android:name="android.permission.WAKE_LOCK"/>
- /**
- *
- * @author zhujianbin
- *
- */
- public class Utils {
- private static WakeLock wl;
-
- /**
- * 保持屏幕喚醒狀態(即背景燈不熄滅)
- * @param on 是否喚醒
- */
- public static void keepScreenOn(Context context, boolean on) {
- if (on) {
- PowerManager pm = (PowerManager) context.getSystemService(Context.POWER_SERVICE);
- wl = pm.newWakeLock(PowerManager.SCREEN_BRIGHT_WAKE_LOCK | PowerManager.ON_AFTER_RELEASE, "==KeepScreenOn==");
- wl.acquire();
- }else {
- wl.release();
- wl = null;
- }
- }
- }
解釋:
用到的類
PowerManager
主要是這兩個參數:PowerManager.SCREEN_BRIGHT_WAKE_LOCK | PowerManager.ON_AFTER_RELEASE
下面是 android 官方API 解釋:
he following flags are defined, with varying effects on system power.
These flags are mutually exclusive - you may only specify one of them.
Flag Value |
CPU |
Screen |
Keyboard |
PARTIAL_WAKE_LOCK |
On*
Off
Off
SCREEN_DIM_WAKE_LOCK |
On
Dim
Off
SCREEN_BRIGHT_WAKE_LOCK |
On
Bright
Off
FULL_WAKE_LOCK |
On
Bright
Bright
一般要使程序運行過程中背景保持常亮,使用
SCREEN_BRIGHT_WAKE_LOCK 就可以,
SCREEN_BRIGHT_WAKE_LOCK CPU:喚醒 屏幕背光:喚醒 鍵盤燈:關閉
第二個參數:
In addition, you can add two more flags, which affect behavior of the screen only.These flags have no effect when combined with aPARTIAL_WAKE_LOCK
.
Flag Value |
Description |
ACQUIRE_CAUSES_WAKEUP |
Normal wake locks don't actually turn on the illumination. Instead, they cause the illumination to remain on once it turns on (e.g. from user activity). This flag will force the screen and/or keyboard to turn on immediately, when the WakeLock is acquired. A typical use would be for notifications which are important for the user to see immediately.
ON_AFTER_RELEASE |
If this flag is set, the user activity timer will be reset when the WakeLock is released, causing the illumination to remain on a bit longer. This can be used to reduce flicker if you are cycling between wake lock conditions.