summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorAdam Lesinski <adamlesinski@google.com>2014-08-29 11:30:47 -0700
committerAdam Lesinski <adamlesinski@google.com>2014-09-10 12:28:35 -0700
commit3e3e1126d588bb1fb1879c34a0f9963206ec8f22 (patch)
tree4ca5bf08fec99db207fca7335ae5c5b02d34ad92 /AndroidManifest.xml
parentdee544d68c92a3e1f66a981b8e232941c9b582a4 (diff)
downloadandroid_packages_apps_PackageInstaller-3e3e1126d588bb1fb1879c34a0f9963206ec8f22.tar.gz
android_packages_apps_PackageInstaller-3e3e1126d588bb1fb1879c34a0f9963206ec8f22.tar.bz2
android_packages_apps_PackageInstaller-3e3e1126d588bb1fb1879c34a0f9963206ec8f22.zip
Use an AlertDialog for the Uninstall confirmation
This allows us to get the correct theming for free moving forward. Bug:17045520 Change-Id: I173315b39816b0061c048459e1f14d81747f072b
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 66d22542..ca8777d0 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -17,7 +17,7 @@
<application android:label="@string/app_name"
android:allowBackup="false"
- android:theme="@android:style/Theme.DeviceDefault.DialogWhenLarge.NoActionBar"
+ android:theme="@style/Theme.DialogWhenLarge"
android:supportsRtl="true">
<activity android:name=".PackageInstallerActivity"
@@ -49,7 +49,7 @@
<activity android:name=".UninstallerActivity"
android:configChanges="orientation|keyboardHidden|screenSize"
android:excludeFromRecents="true"
- android:theme="@android:style/Theme.DeviceDefault.Dialog.NoActionBar">
+ android:theme="@style/Theme.AlertDialogActivity">
<intent-filter>
<action android:name="android.intent.action.DELETE" />
<action android:name="android.intent.action.UNINSTALL_PACKAGE" />