StarkHuang 2010-08-22
经过《让Android设备永不锁屏》文章中所述的修改,原以为已经完全让Android设备不锁屏了。后来发现我的Android设备烧录好之后第一次启动永远不会锁屏,但是设备重启之后开机就进入锁屏状态,解锁之后就再也不会锁屏了(因为永远不超时)。看来“革命尚未成功,同志仍需努力”啊。
那么为什么启动之后没有进入锁屏状态呢?是不会系统有把超时锁屏的值给修改了呢?我通过sqlite3去查看settings.db的内容,发现超时锁屏的值仍然是-1。说明启动之后,系统并没有去数据库中查看屏幕超时锁屏的值,就直接锁屏了。
但是怎样才能开机之后不进入锁屏状态呢?这个是个非常费思量的问题。经过go,我知道锁屏的代码在LockScreen.java中,然后顺藤摸瓜,终于找到了可以设置锁屏功能开关的位置。代码位于:
frameworks/policies/base/phone/com/android/internal/policy/impl/KeyguardViewMediator.java
该文件中有一个变量定义如下:
/**
*Externalapps(likethephoneapp)cantellustodisablethekeygaurd.
*/
privatebooleanmExternallyEnabled=true;
mExternallyEnabled是用来管理是否开启屏幕锁的关键。默认值是打开屏锁,根据注释可以知道他是希望应用程序来修改这个值。但是经过加打印信息发现开机的时候没有任何应用程序会修改它。修改这个值调用如下函数:
/**
*Samesemanticsas{@linkWindowManagerPolicy#enableKeyguard};provide
*awayforexternalstufftooverridenormalkeyguardbehavior.Forinstance
*thephoneappdisablesthekeyguardwhenitreceivesincomingcalls.
*/
publicvoidsetKeyguardEnabled(booleanenabled){
synchronized(this){
if(DEBUG)Log.d(TAG,"setKeyguardEnabled("+enabled+")");
mExternallyEnabled=enabled;
if(!enabled&&mShowing){
if(mExitSecureCallback!=null){
if(DEBUG)Log.d(TAG,"inprocessofverifyUnlockrequest,ignoring");
//we'reintheprocessofhandlingarequesttoverifytheuser
//cangetpastthekeyguard.ignoreextraneousrequeststodisable/reenable
return;
}
//hidingkeyguardthatisshowing,remembertoreshowlater
if(DEBUG)Log.d(TAG,"rememberingtoreshow,hidingkeyguard,"
+"disablingstatusbarexpansion");
mNeedToReshowWhenReenabled=true;
hideLocked();
}elseif(enabled&&mNeedToReshowWhenReenabled){
//reenabledafterpreviouslyhidden,reshow
if(DEBUG)Log.d(TAG,"previouslyhidden,reshowing,reenabling"
+"statusbarexpansion");
mNeedToReshowWhenReenabled=false;
if(mExitSecureCallback!=null){
if(DEBUG)Log.d(TAG,"onKeyguardExitResult(false),resetting");
mExitSecureCallback.onKeyguardExitResult(false);
mExitSecureCallback=null;
resetStateLocked();
}else{
showLocked();
//blockuntilweknowthekeygaurdisdonedrawing(andpostamessage
//tounblockusafteratimeoutsowedon'triskblockingtoolong
//andcausinganANR).
mWaitingUntilKeyguardVisible=true;
mHandler.sendEmptyMessageDelayed(KEYGUARD_DONE_DRAWING,KEYGUARD_DONE_DRAWING_TIMEOUT_MS);
if(DEBUG)Log.d(TAG,"waitinguntilmWaitingUntilKeyguardVisibleisfalse");
while(mWaitingUntilKeyguardVisible){
try{
wait();
}catch(InterruptedExceptione){
Thread.currentThread().interrupt();
}
}
if(DEBUG)Log.d(TAG,"donewaitingformWaitingUntilKeyguardVisible");
}
}
}
}
经过上面的讨论我们可以发现我们有两个解决方法:
1、定义变量的时候,给其初始化为false。
2、在launcher模块启动的时候,调用setKeyguardEnabled方法,关闭锁屏功能。
我懒得修改Laucher模块,我的解决方法就是在定义mExternallyEnabled时修改其初始值为false。各位朋友可以根据自己的实际情况选择解决方案。我的代码如下:
/**
*Externalapps(likethephoneapp)cantellustodisablethekeygaurd.
*/
privatebooleanmExternallyEnabled=false;
这样修改之后,Android设备开机之后,默认不会进入锁屏状态,除非你在应用程序中调用setKeyguardEnabled方法显示打开这个功能。因为设置的超时时间为-1,则永远也不会进入锁屏界面。