A have an Activity
(minSDK for my app = 14) to which the @android:style/Theme.Holo.Dialog
Theme is applied. I need to set an icon, so I used
this.requestWindowFeature(Window.FEATURE_LEFT_ICON);
this.setFeatureDrawableResource(Window.FEATURE_LEFT_ICON,
R.drawable.share);
I guess the icon is set (because the title moved to the right) but for some reason it is not visible as if it was transparent:
I can't find any logical explanation for this behavior. Any ideas?
P.S. no, my drawable is not the same color as the window's background