Android 屏幕常亮

来源:互联网 发布:什么是网络金融诈骗 编辑:程序博客网 时间:2024/06/11 20:13

本文主题:

使android程序运行过程中,屏幕背景灯保持唤醒,即不黑屏。


先上代码:

注意需要加权限

[html] view plaincopy
  1. <uses-permission android:name="android.permission.WAKE_LOCK"/>  

[java] view plaincopy
  1. /** 
  2.  *  
  3.  * @author zhujianbin 
  4.  * 
  5.  */  
  6. public class Utils {  
  7.     private static WakeLock wl;  
  8.        
  9.     /** 
  10.      * 保持屏幕唤醒状态(即背景灯不熄灭) 
  11.      * @param on 是否唤醒 
  12.      */  
  13.     public static void keepScreenOn(Context context, boolean on) {  
  14.         if (on) {  
  15.             PowerManager pm = (PowerManager) context.getSystemService(Context.POWER_SERVICE);  
  16.             wl = pm.newWakeLock(PowerManager.SCREEN_BRIGHT_WAKE_LOCK | PowerManager.ON_AFTER_RELEASE, "==KeepScreenOn==");  
  17.             wl.acquire();  
  18.         }else {  
  19.             wl.release();  
  20.             wl = null;  
  21.         }  
  22.     }  
  23. }  


解释:

用到的类

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 ValueCPUScreenKeyboardPARTIAL_WAKE_LOCKOn*OffOffSCREEN_DIM_WAKE_LOCKOnDimOffSCREEN_BRIGHT_WAKE_LOCKOnBrightOffFULL_WAKE_LOCKOnBrightBright

一般要使程序运行过程中背景保持常亮,使用

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 ValueDescriptionACQUIRE_CAUSES_WAKEUPNormal 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_RELEASEIf 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.
0 0
原创粉丝点击