I have created a simple custom theme for my dialog boxes, but now the EditText elements inside the Dialogs that use this theme do not keep the nice default ICS theme.
Here is the theme I am using:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="DarkDialog" parent="@android:style/Theme.Dialog">
<item name="android:windowFrame">@null</item>
<item name="android:windowTitleStyle">@style/DarkDialogTitle</item>
<item name="android:background">#282828</item>
</style>
<style name="DarkDialogTitle">
<item name="android:textColor">#33B5E5</item>
<item name="android:paddingLeft">16dip</item>
<item name="android:paddingRight">16dip</item>
<item name="android:textSize">22sp</item>
</style>
And this is what I see when I use it:
Is there a way to make the EditText elements inside my custom themed Dialogs use the default theme for whatever device they are on?