Enable rotation for sw600dp devices
Change-Id: Id01c84eba30a80cb21b1527cdc137aba9cda09f2
This commit is contained in:
@@ -1,4 +1,6 @@
|
||||
<resources>
|
||||
<bool name="allow_rotation">true</bool>
|
||||
|
||||
<integer name="cell_count_x">6</integer>
|
||||
<integer name="cell_count_y">6</integer>
|
||||
<integer name="hotseat_cell_count">7</integer>
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
<bool name="config_hardwareAccelerated">true</bool>
|
||||
<bool name="config_largeHeap">false</bool>
|
||||
<bool name="is_large_screen">false</bool>
|
||||
<bool name="allow_rotation">false</bool>
|
||||
|
||||
<!-- AllApps/Customize/AppsCustomize -->
|
||||
<!-- The alpha of the AppsCustomize bg in spring loaded mode -->
|
||||
|
||||
@@ -380,8 +380,10 @@ public final class Launcher extends Activity
|
||||
final String forceEnableRotation =
|
||||
SystemProperties.get(FORCE_ENABLE_ROTATION_PROPERTY, "false");
|
||||
|
||||
boolean enableRotation = getResources().getBoolean(R.bool.allow_rotation);
|
||||
|
||||
// On large interfaces, we want the screen to auto-rotate based on the current orientation
|
||||
if (LauncherApplication.isScreenLarge() || "true".equalsIgnoreCase(forceEnableRotation)) {
|
||||
if (enableRotation || "true".equalsIgnoreCase(forceEnableRotation)) {
|
||||
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user