Possible Duplicate:
Transparent, borderless ProgressDialog
I'm using Theme.Light
in my app. While using Progress Dialog
, text of dialog color is black and it's not encouraging.
I tried this change only dialog's text color, but didn't work:
<style name="Theme.MyDialog" parent="@android:style/Theme.Dialog">
<item name="android:windowNoTitle">true</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:textColor">#FFFFFF</item>
</style>
Do I have to set the style (MyDialog) in any XML? Or how can I change dialog's text color?
Thanks in advance.
<item name="android:textColor">*my_text_color*</item>
. – Bozuwa