summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorDianne Hackborn <hackbod@google.com>2009-09-23 22:24:22 -0700
committerDianne Hackborn <hackbod@google.com>2009-09-23 22:24:22 -0700
commitec54997a04307887b709c607808dace00df2f138 (patch)
treedecb20c1673850fcb8813471285e4160464fc6b4 /AndroidManifest.xml
parente65c943f974966e21c6f18dc9a95107ea1f07631 (diff)
downloadpackages_apps_settings-ec54997a04307887b709c607808dace00df2f138.zip
packages_apps_settings-ec54997a04307887b709c607808dace00df2f138.tar.gz
packages_apps_settings-ec54997a04307887b709c607808dace00df2f138.tar.bz2
Fix issue #2133206: dialogs/menus should auto-dismiss when screen turns off
These dialogs should clear. Change-Id: Ie78212c1bd112d1f2f7a05f2d23eb9b5c9f02131
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml6
1 files changed, 4 insertions, 2 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 21e4dc2..9393057 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -480,7 +480,8 @@
<activity android:name="ActivityPicker"
android:label="@string/activity_picker_label"
- android:theme="@*android:style/Theme.Dialog.Alert">
+ android:theme="@*android:style/Theme.Dialog.Alert"
+ android:finishOnCloseSystemDialogs="true">
<intent-filter>
<action android:name="android.intent.action.PICK_ACTIVITY" />
<category android:name="android.intent.category.DEFAULT" />
@@ -583,7 +584,8 @@
<!-- Standard picker for widgets -->
<activity android:name="AppWidgetPickActivity"
android:label="@string/widget_picker_title"
- android:theme="@*android:style/Theme.Dialog.Alert">
+ android:theme="@*android:style/Theme.Dialog.Alert"
+ android:finishOnCloseSystemDialogs="true">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_PICK" />
<category android:name="android.intent.category.DEFAULT" />