user836026
user836026

Reputation: 11350

colorBackgroundCacheHint Resource not found

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

Answers (2)

Piyush
Piyush

Reputation: 1973

You are missing android <item name="android:colorBackgroundCacheHint">@null</item>

Upvotes: 2

EJK
EJK

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

Related Questions