summaryrefslogtreecommitdiffstats
path: root/res/values/themes.xml
diff options
context:
space:
mode:
authorPhilip P. Moltmann <moltmann@google.com>2016-10-26 09:45:44 -0700
committerPhilip P. Moltmann <moltmann@google.com>2016-10-27 09:02:52 -0700
commit0c0687d666f6770690916a7807f9df69628f63a9 (patch)
tree12471d890e39dda9cab08991b7d602f006115581 /res/values/themes.xml
parent33a9793b18f33267f6b6986d0a412921f533d813 (diff)
downloadandroid_packages_apps_PackageInstaller-0c0687d666f6770690916a7807f9df69628f63a9.tar.gz
android_packages_apps_PackageInstaller-0c0687d666f6770690916a7807f9df69628f63a9.tar.bz2
android_packages_apps_PackageInstaller-0c0687d666f6770690916a7807f9df69628f63a9.zip
UI tweaks for package installer
- separate tablet and phone UI - Switch to AAPT1 until APPT2 bugs preventing HW accelleration is fixed. - Set elevation for action bar. Missing: - install_start has to be split into the various variations - tablet mode needs to be throughly tested Test: Ran installation on phone Change-Id: Ia1c72ee34e945b6a872be35801ea18a901cbb38f
Diffstat (limited to 'res/values/themes.xml')
-rw-r--r--res/values/themes.xml21
1 files changed, 21 insertions, 0 deletions
diff --git a/res/values/themes.xml b/res/values/themes.xml
index db4b744e..a88674aa 100644
--- a/res/values/themes.xml
+++ b/res/values/themes.xml
@@ -33,4 +33,25 @@
<item name="android:windowBackground">@android:color/transparent</item>
</style>
+ <style name="DialogWhenLarge"
+ parent="@android:style/Theme.DeviceDefault.Light.NoActionBar">
+ <item name="android:textAppearanceMedium">@style/MediumText</item>
+ <item name="android:textAppearanceSmall">@style/SmallText</item>
+ <item name="android:titleTextStyle">@style/TitleText</item>
+ </style>
+
+ <style name="DialogWhenLargeNoAnimation" parent="DialogWhenLarge">
+ <item name="android:windowAnimationStyle">@null</item>
+ </style>
+
+ <style name="AlertDialogActivity"
+ parent="@android:style/Theme.DeviceDefault.Light.Panel">
+ <item name="android:backgroundDimEnabled">true</item>
+ </style>
+
+ <style name="Header.Settings"
+ parent="@android:style/Theme.DeviceDefault.Settings">
+ </style>
+
+
</resources>