diff options
author | 2016-01-25 10:49:13 -0800 | |
---|---|---|
committer | 2016-01-25 10:49:13 -0800 | |
commit | 133f299c164474927c784da971951d5e0cf228df (patch) | |
tree | 79aa87190ee45b2162677f6c20b48f718a99fc71 | |
parent | fe434a15d6bde9299b51dc284b336944e5cf8a1c (diff) |
Removed handling of layoutDirection configuration change
We thought this was required for resizing, but it isn't.
Bug: 26742139
Change-Id: I2b25ac8b188f8cafaf9d7472f79ca947cfe824c0
-rw-r--r-- | packages/SystemUI/AndroidManifest.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/SystemUI/AndroidManifest.xml b/packages/SystemUI/AndroidManifest.xml index 4cdfcb49e44c..21abb901cb9a 100644 --- a/packages/SystemUI/AndroidManifest.xml +++ b/packages/SystemUI/AndroidManifest.xml @@ -229,7 +229,7 @@ android:resumeWhilePausing="true" android:screenOrientation="behind" android:resizeableActivity="true" - android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout|layoutDirection" + android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout" android:theme="@style/RecentsTheme.Wallpaper"> <intent-filter> <action android:name="com.android.systemui.recents.TOGGLE_RECENTS" /> @@ -321,7 +321,7 @@ android:exported="true" android:theme="@style/PipTheme" android:launchMode="singleTop" - android:configChanges="screenSize|smallestScreenSize|screenLayout|orientation|layoutDirection" + android:configChanges="screenSize|smallestScreenSize|screenLayout|orientation" android:resizeable="true" android:supportsPictureInPicture="true" androidprv:alwaysFocusable="true" @@ -331,7 +331,7 @@ android:exported="true" android:theme="@style/PipTheme" android:launchMode="singleTop" - android:configChanges="screenSize|smallestScreenSize|screenLayout|orientation|layoutDirection" + android:configChanges="screenSize|smallestScreenSize|screenLayout|orientation" android:resizeable="true" android:supportsPictureInPicture="true" android:excludeFromRecents="true" /> |