diff options
| author | Dianne Hackborn <hackbod@android.com> | 2012-04-23 18:20:50 -0700 |
|---|---|---|
| committer | android code review <noreply-gerritcodereview@google.com> | 2012-04-23 18:20:51 -0700 |
| commit | 1430ad970bfc25bb951234cb0ea4085f758e88eb (patch) | |
| tree | ae43b0f6c30d3bab640f640d8e88b9d12093c477 | |
| parent | f8298fc3d0c7f8307427428585773192d9692a50 (diff) | |
| parent | c477fcb8cb6b69429892722f3cddc8ec5f9b75db (diff) | |
| download | platform_packages_apps_PackageInstaller-ics-plus-aosp.tar.gz platform_packages_apps_PackageInstaller-ics-plus-aosp.tar.bz2 platform_packages_apps_PackageInstaller-ics-plus-aosp.zip | |
Merge "PackageInstaller : Don't restart on orientation change"android-sdk-adt_r20tools_r20ics-plus-aosp
| -rw-r--r-- | AndroidManifest.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index af5fa7621..a9ee767fb 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -13,7 +13,7 @@ android:allowBackup="false" android:theme="@android:style/Theme.Holo.DialogWhenLarge.NoActionBar"> <activity android:name=".PackageInstallerActivity" - android:configChanges="orientation|keyboardHidden" + android:configChanges="orientation|keyboardHidden|screenSize" android:excludeFromRecents="true"> <intent-filter> <action android:name="android.intent.action.VIEW" /> @@ -31,10 +31,10 @@ </intent-filter> </activity> <activity android:name=".InstallAppProgress" - android:configChanges="orientation|keyboardHidden"> + android:configChanges="orientation|keyboardHidden|screenSize"> </activity> <activity android:name=".UninstallerActivity" - android:configChanges="orientation|keyboardHidden" + android:configChanges="orientation|keyboardHidden|screenSize" android:excludeFromRecents="true"> <intent-filter> <action android:name="android.intent.action.VIEW" /> |
