Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6033ceb4 authored by Winson Chung's avatar Winson Chung
Browse files

Ensure we don't call getLayoutDirection() for devices not running JB MR1+. (Bug 12906355)

Change-Id: I25115b9529c21d3079f50bc26bad8f846a6fcd3e
parent f47cc890
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -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;