I have a subclass of android.app.Dialog and because I am using a light
theme, the dialog title comes out as Black on a dark background which
is hardly readable.
This leads me to the question: how do I change the Dialog title
background or foreground colors? Can I do this via a theme? Which
property will it map to?

Here is how I define my theme:
  <style name="MyTheme" parent="android:Theme.Light">
    <item name="android:windowBackground">#f3efe1</item>
    <item name="android:windowNoTitle">true</item>
    <item name="android:textColor">@drawable/solid_black</item>
 </style>

If theme is not possible, can I do this programmatically?

Thanks
Inder

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to