Is it safe to disable com.android.systemui?

谁说我不能喝 提交于 2019-12-04 10:05:57

If you completely remove SystemUI.apk from the system, your device will hang on start-up and never fully boot again. Tried it before. ;) Framework-res and the system have some dependencies on SystemUI.

The correct, non-invasive way to get rid of SystemUI is to have an application that force-closes it upon BOOT_COMPLETED via am force-stop com.example.systemui or kill <PID>. Depending on device SystemUI restarts itself (not always), if it does you'll have to set a Timer that repeats the kill process. There's an app on Play store that does this, but I can't say for the reliability.

Hope this helps,

I have it disabled on my phone succesfully via removal; gone is the ugly top bar with the notifications and clock.

Drawbacks are that native screenshots won't work nor does the recent apps switcher, but both issues can be fixed via replacements.

Battery life increases slightly due to lower CPU usage.

(I9500 cyanogenmod 11)

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