diff --git a/frameworks/base/core/res/res/values/ b/frameworks/base/core/res/res/values/
index 5558d4adc1..22d1f36f47 100644
--- a/frameworks/base/core/res/res/values/
+++ b/frameworks/base/core/res/res/values/
<!-- Controls whether the nav bar can move from the bottom to the side in landscape.
Only applies if the device display is not square. -->
- <bool name="config_navBarCanMove">true</bool>
+ <bool name="config_navBarCanMove">false</bool>
<!-- Controls whether the navigation bar lets through taps. -->
<bool name="config_navBarTapThrough">false</bool>
diff --git a/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/recents/utilities/ b/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/recents/utilities/
index 77a13bd91b..6f9b8e0d61 100644
--- a/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/recents/utilities/
+++ b/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/recents/utilities/
float smallestWidth = dpiFromPx(((), ()),
().getConfiguration().densityDpi);
- return smallestWidth >= TABLET_MIN_DPS;
+ return false;//smallestWidth >= TABLET_MIN_DPS;
}
public static float dpiFromPx(float size, int densityDpi) {
diff --git a/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/ b/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/
index 86e191151a..f873425698 100644
--- a/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/
+++ b/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/
destroyExistingTaskbar();
- boolean isTaskBarEnabled = dp != null && isTaskbarPresent(dp);
+ boolean isTaskBarEnabled = false;//dp != null && isTaskbarPresent(dp);
+ ("==hh isTaskBarEnabled:"+isTaskBarEnabled);
if (!isTaskBarEnabled) {
(mContext)
.notifyTaskbarStatus(/* visible */ false, /* stashed */ false);
diff --git a/packages/apps/Launcher3/src/com/android/launcher3/states/ b/packages/apps/Launcher3/src/com/android/launcher3/states/
index e5b4ebae1d..b9dcc698e9 100644
--- a/packages/apps/Launcher3/src/com/android/launcher3/states/
+++ b/packages/apps/Launcher3/src/com/android/launcher3/states/
// original dimensions to determine if rotation is allowed of not.
float originalSmallestWidth = dpiFromPx((, ),
DENSITY_DEVICE_STABLE);
- return originalSmallestWidth >= MIN_TABLET_WIDTH;
+ return false;//originalSmallestWidth >= MIN_TABLET_WIDTH;
}
public static final int REQUEST_NONE = 0;
diff --git a/packages/apps/Launcher3/src/com/android/launcher3/util/ b/packages/apps/Launcher3/src/com/android/launcher3/util/
index c52890fd18..80b8e8354a 100644
--- a/packages/apps/Launcher3/src/com/android/launcher3/util/
+++ b/packages/apps/Launcher3/src/com/android/launcher3/util/
* Returns {@code true} if the bounds represent a tablet.
*/
public boolean isTablet(WindowBounds bounds) {
- return smallestSizeDp(bounds) >= MIN_TABLET_WIDTH;
+ return false;//smallestSizeDp(bounds) >= MIN_TABLET_WIDTH;
}
/**
diff --git a/packages/apps/Launcher3/src/com/android/launcher3/util/window/ b/packages/apps/Launcher3/src/com/android/launcher3/util/window/
index fb2ae732b7..5af6596e99 100644
--- a/packages/apps/Launcher3/src/com/android/launcher3/util/window/
+++ b/packages/apps/Launcher3/src/com/android/launcher3/util/window/
Resources systemRes = ();
Configuration config = ();
- boolean isTablet = > MIN_TABLET_WIDTH;
+ boolean isTablet = false;// > MIN_TABLET_WIDTH;
boolean isGesture = isGestureNav(context);
boolean isPortrait = > ;
systemRes = (conf).getResources();
}
- boolean isTablet = swDp >= MIN_TABLET_WIDTH;
+ boolean isTablet = false;//swDp >= MIN_TABLET_WIDTH;
boolean isTabletOrGesture = isTablet
|| (Utilities.ATLEAST_R && isGestureNav(context));