本文主要是介绍Android 删除开机动画,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Android 删除开机动画
两种方法都是将debug.sf.nobootanimation的值改为属性1
第一种:
frameworks/base/cmds/bootanimation/BootAnimationUtil.cpp
bool bootAnimationDisabled() {char value[PROPERTY_VALUE_MAX];
// property_get("debug.sf.nobootanimation", value, "0");property_get("debug.sf.nobootanimation", value, "1");if (atoi(value) > 0) {return true;}property_get("ro.boot.quiescent", value, "0");return atoi(value) > 0;
}
第二种:
在mk文件中直接配置 debug.sf.nobootanimation 属性值为1
这篇关于Android 删除开机动画的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!