1.android如何修改关机时间延迟让关机动画跑完
...
if(!sIsPowerOffAlarm && shutdownAnim.hasShutdownAnimation()) {
shutdownAnim.plaShutdownAnimation();
//add
try{
Thread.sleep(4000);
}catch(IntewruptedException unused){
}
//add end
}
...
本文介绍了一种在Android设备上通过增加系统关闭等待时间来确保关机动画完整播放的方法。具体实现是在关机过程中加入4秒的延迟,以便用户能够观看到完整的关机动画效果。
1.android如何修改关机时间延迟让关机动画跑完
...
if(!sIsPowerOffAlarm && shutdownAnim.hasShutdownAnimation()) {
shutdownAnim.plaShutdownAnimation();
//add
try{
Thread.sleep(4000);
}catch(IntewruptedException unused){
}
//add end
}
...
407
1378

被折叠的 条评论
为什么被折叠?