Unlock the Android Lockscreen activity

我只是一个虾纸丫 提交于 2019-12-23 05:38:10

问题


I have a running android Service. It runs even on the lockscreen, and i want it to somehow Unlock the lockscreen.

How can i 'interfere' with the lockscreen activity or whatever the lockscreen is?

Update:

I want my service to Unlock the lockscreen, just like if the user slided the unlock thing.

Got it?


回答1:


You can. Use this code:

Window window = getWindow();  
window.addFlags(WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD);

This will unlock the Keyguard automatically.



来源:https://stackoverflow.com/questions/6051010/unlock-the-android-lockscreen-activity

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!