Reputation: 11350
I added th below item under <style name="mycutomDialog" parent="android:Theme.Light">
as theme.
<item name="colorBackgroundCacheHint">@null</item>
However, Android complained that "colorBackgroundCacheHint resource not found that match the given attr. How could I define this attr.
Upvotes: 0
Views: 1412
Reputation: 1973
You are missing android <item name="android:colorBackgroundCacheHint">@null</item>
Upvotes: 2
Reputation: 12527
Preface the attribute name with "android:". This XML attribute is defined in the Android SDK, and thus the android namespace must be used.
<item name="android:colorBackgroundCacheHint">@null</item>
Upvotes: 1