device/rockchip/common/tv/overlay/frameworks/base/core/res/res/values/dimens.xml
@@ -17,15 +17,15 @@
<resources>
<!-- Height of the status bar -->
- <dimen name="status_bar_height">0dp</dimen>
+ <dimen name="status_bar_height">24dp</dimen>
<!-- Height of the bottom navigation / system bar -->
- <dimen name="navigation_bar_height">0dp</dimen>
+ <dimen name="navigation_bar_height">48dp</dimen>
<!-- Height of the bottom navigation bar in landscape -->
- <dimen name="navigation_bar_height_landscape">0dp</dimen>
+ <dimen name="navigation_bar_height_landscape">48dp</dimen>
<!-- Width of the navigation bar when it is placed vertically on the screen -->
- <dimen name="navigation_bar_width">42dp</dimen>
+ <dimen name="navigation_bar_width">48dp</dimen>
</resources>
frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/SystemBars.java
@@ -88,7 +88,7 @@ public class SystemBars extends SystemUI implements ServiceMonitor.Callbacks {
if (DEBUG) Log.d(TAG, "createStatusBarFromConfig");
String clsName = mContext.getString(R.string.config_statusBarComponent);
if ("box".equals(SystemProperties.get("ro.target.product", "tablet"))){
- clsName = "com.android.systemui.statusbar.tv.TvStatusBar";
+ clsName = "com.android.systemui.statusbar.phone.PhoneStatusBar";
}
if (clsName == null || clsName.length() == 0) {
throw andLog("No status bar component configured", null);
frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java
@@ -267,7 +267,7 @@ public class PhoneStatusBar extends BaseStatusBar implements DemoMode,
private static final boolean ONLY_CORE_APPS;
/** If true, the lockscreen will show a distinct wallpaper */
- private static final boolean ENABLE_LOCKSCREEN_WALLPAPER = true;
+ private static final boolean ENABLE_LOCKSCREEN_WALLPAPER = false;
/* If true, the device supports freeform window management.
* This affects the status bar UI. */