欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Android 去掉Power键屏保功能,但保留长按关机功能。

程序员文章站 2024-03-16 20:50:34
...

https://blog.csdn.net/drakeblue/article/details/38680353

这篇文章介绍了去掉power键的所有功能

现在需要保留长按关机,只需要取消短按屏保功能

else {
     mPowerKeyTriggered = false;
     cancelPendingScreenshotChordAction();
     if (interceptPowerKeyUp(canceled || mPendingPowerKeyUpCanceled)) {
                        result = result;//(result & ~ACTION_WAKE_UP) |ACTION_GO_TO_SLEEP;
     }
     mPendingPowerKeyUpCanceled = false;
}

这样就行了。