Disable Lock Screen

前端 未结 4 1027
耶瑟儿~
耶瑟儿~ 2020-12-02 17:31

I am looking for a way to replace the stock lock screen (with an app, not a rom). What is the best way to do it, for a start to disable the lock screen on as much devices as

4条回答
  •  心在旅途
    2020-12-02 18:13

    KeyguardManager keyguardManager = (KeyguardManager)getSystemService(Activity.KEYGUARD_SERVICE);
    KeyguardLock lock = keyguardManager.newKeyguardLock(KEYGUARD_SERVICE);
    lock.disableKeyguard();
    

    in androidmanifest:

    
    

提交回复
热议问题