去掉android的开机锁, 在systemReady后,系统会启动Keyguard, 注释掉。 就不会有了
/**
* Let us know that the system is ready after startup.
*/
public void onSystemReady() {
synchronized (this) {
if (DEBUG) Log.d(TAG, "onSystemReady");
mSystemReady = true;
//doKeyguard();
}
}
阅读(2395) | 评论(0) | 转发(0) |