diff options
Diffstat (limited to 'core/res')
-rwxr-xr-x | core/res/res/values/attrs.xml | 1 | ||||
-rw-r--r-- | core/res/res/values/themes.xml | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/core/res/res/values/attrs.xml b/core/res/res/values/attrs.xml index 1083452..b22d833 100755 --- a/core/res/res/values/attrs.xml +++ b/core/res/res/values/attrs.xml @@ -351,6 +351,7 @@ <eat-comment /> <attr name="alertDialogStyle" format="reference" /> <attr name="alertDialogButtonGroupStyle" format="reference" /> + <attr name="alertDialogCenterButtons" format="boolean" /> <!-- ============ --> <!-- Panel styles --> diff --git a/core/res/res/values/themes.xml b/core/res/res/values/themes.xml index e92ebba..cefc039 100644 --- a/core/res/res/values/themes.xml +++ b/core/res/res/values/themes.xml @@ -143,6 +143,7 @@ <item name="dialogTheme">@android:style/Theme.Dialog</item> <item name="alertDialogTheme">@android:style/Theme.Dialog.Alert</item> <item name="alertDialogButtonGroupStyle">?android:attr/buttonGroupStyle</item> + <item name="alertDialogCenterButtons">true</item> <!-- Panel attributes --> <item name="panelBackground">@android:drawable/menu_background</item> @@ -590,7 +591,7 @@ </style> <!-- @hide --> - <style name="Theme.Dialog.AppError"> + <style name="Theme.Dialog.AppError" parent="Theme.Holo.Dialog"> <item name="windowFrame">@null</item> <item name="windowTitleStyle">@android:style/DialogWindowTitle</item> <item name="windowBackground">@android:color/transparent</item> @@ -754,6 +755,7 @@ <item name="dialogTheme">@android:style/Theme.Holo.Dialog</item> <item name="alertDialogTheme">@android:style/Theme.Holo.Dialog.Alert</item> <item name="alertDialogButtonGroupStyle">@android:style/Widget.Holo.ButtonGroup.AlertDialog</item> + <item name="alertDialogCenterButtons">false</item> <!-- Panel attributes --> <item name="panelBackground">@android:drawable/menu_background</item> |