Loading src/com/android/launcher3/DeviceProfile.java +5 −1 Original line number Diff line number Diff line Loading @@ -371,7 +371,11 @@ public class DeviceProfile { isLandscape = (configuration.orientation == Configuration.ORIENTATION_LANDSCAPE); isTablet = resources.getBoolean(R.bool.is_tablet); isLargeTablet = resources.getBoolean(R.bool.is_large_tablet); if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.JELLY_BEAN_MR1) { isLayoutRtl = (configuration.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL); } else { isLayoutRtl = false; } widthPx = wPx; heightPx = hPx; availableWidthPx = awPx; Loading Loading
src/com/android/launcher3/DeviceProfile.java +5 −1 Original line number Diff line number Diff line Loading @@ -371,7 +371,11 @@ public class DeviceProfile { isLandscape = (configuration.orientation == Configuration.ORIENTATION_LANDSCAPE); isTablet = resources.getBoolean(R.bool.is_tablet); isLargeTablet = resources.getBoolean(R.bool.is_large_tablet); if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.JELLY_BEAN_MR1) { isLayoutRtl = (configuration.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL); } else { isLayoutRtl = false; } widthPx = wPx; heightPx = hPx; availableWidthPx = awPx; Loading