开机不锁屏

目的:取消Android开机滑动解锁的屏幕

修改文件:frameworks/base/policy/src/com/android/internal/policy/impl/KeyguardViewMediator.java
-------------------------------------from-------------------------------------

   /**
     * External apps (like the phone app) can tell us to disable the keygaurd.
     */
   private boolean mExternallyEnabled = true;

------------------------------------ to -------------------------------------

   /**
     * External apps (like the phone app) can tell us to disable the keygaurd.
     */
   private boolean mExternallyEnabled = false;


编译出 android.policy.jar,拷贝到开发板上,重启。

你可能感兴趣的:(android,Android)