SystemServer
We can hide StatusBar, settiing of "config.disable_systemui" .https://android.googlesource.com/platform/frameworks/base/+/android-4.4_r1/services/java/com/android/server/SystemServer.java
1 2 3 4 5 6 7 8 9 10 11 | boolean disableSystemUI = SystemProperties.getBoolean( "config.disable_systemui" , false ); if (!disableSystemUI) { try { Slog.i(TAG, "Status Bar" ); statusBar = new StatusBarManagerService(context, wm); ServiceManager.addService(Context.STATUS_BAR_SERVICE, statusBar); } catch (Throwable e) { reportWtf( "starting StatusBarManagerService" , e); } } |
SystemUi
Delete "tablet" of folder. so not be used on JB!!https://android.googlesource.com/platform/frameworks/base/+/android-4.4_r1/packages/SystemUI/src/com/android/systemui/statusbar/