在Android中,WakeLock可以让进程持续执行,即使手机关屏、进入睡眠模式。。基于Rexsee的WakeLock扩展可以使用JS实现。。

【函数】 void acquire(boolean onAfterRelease)

【说明】 点亮屏幕直到release()被调用。

【参数】 onAfterRelease:在release()被调用后是否继续点亮至默认的屏幕超时。

【示例】

Html代码
  1. window.setTimeout('rexseeKeyguard.disable();rexseeWakeLock.acquire(false);alert(\'点亮屏幕!\');',5000);
  2. alert('请按电源键关屏,5秒后自动亮屏。');

【函数】 void release()

【说明】 允许黑屏,如果调用的acquire()函数携带了参数true则仍需等待默认的屏幕超时时间后才会黑屏。

【示例】

Html代码
  1. rexseeWakeLock.release();

rexseeWakeLock.java源码

/* * Copyright (C) 2011 The Rexsee Open Source Project * * Licensed under the Rexsee License, Version 1.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * *      http://www.rexsee.com/CN/legal/license.html * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */  package rexsee.core.alarm;   import rexsee.core.browser.JavascriptInterface;  import rexsee.core.browser.RexseeBrowser;  import android.content.Context;  import android.os.PowerManager;   public class RexseeWakeLock implements JavascriptInterface {          private static final String INTERFACE_NAME = "WakeLock";         @Override         public String getInterfaceName() {                 return mBrowser.application.resources.prefix + INTERFACE_NAME;         }         @Override         public JavascriptInterface getInheritInterface(RexseeBrowser childBrowser) {                 return this;         }         @Override         public JavascriptInterface getNewInterface(RexseeBrowser childBrowser) {                 return new RexseeWakeLock(childBrowser);         }          private final Context mContext;         private final RexseeBrowser mBrowser;         private PowerManager.WakeLock mWakeLock = null;          public RexseeWakeLock(RexseeBrowser browser) {                 mBrowser = browser;                 mContext = browser.getContext();         }         public RexseeWakeLock(Context context) {                 mBrowser = null;                 mContext = context;         }          //JavaScript interface         public void acquire(boolean onAfterRelease) {                 release();                 PowerManager pm = (PowerManager) mContext.getSystemService(Context.POWER_SERVICE);                 int mode = PowerManager.FULL_WAKE_LOCK | PowerManager.ACQUIRE_CAUSES_WAKEUP;                 if (onAfterRelease) {                         mode = mode | PowerManager.ON_AFTER_RELEASE;                 }                 mWakeLock = pm.newWakeLock(mode, "");                 mWakeLock.acquire();         }         public void release() {                 if (mWakeLock != null) {                         mWakeLock.release();                         mWakeLock = null;                 }         }   }

更多相关文章

  1. Android 屏幕实现水龙头事件
  2. 屏幕唤醒与解锁解决方案
  3. Android修改字体样式的示例代码
  4. android屏幕旋转在framework中的修改
  5. Android 为Activity屏幕的标题添加图标
  6. android调用高版本api函数的兼容性问题
  7. Android O system函数执行reboot命令失败
  8. android屏幕旋转,老是重新onCreate

随机推荐

  1. Android中和service进行本地通讯
  2. Android中数据的保存和提取
  3. android-数据库操作实例,留着以后用
  4. Android 如何获取最顶端的Top Activity
  5. Android源码中的单例模式android.util.Si
  6. Android Studio实现Activity生命周期的7
  7. android 硬解码用opengles3.0渲染视频
  8. 调试android ethernet 的常用命令
  9. android ndk知识汇总
  10. Android Studio加载老旧项目会遇到的问题