linhtruong
linhtruong

Reputation: 441

No resource identifier found for attribute 'cacheColorHint' in package

I'm trying to use this two-way-grid-view lib:

https://github.com/jess-anders/two-way-gridview

My xml file:

enter image description here

My project is running well before I clone it to different path, package...

Actually it shows error on all properties "app:....".

Can anyone suggest me something about this error, I'm wasting more hours about this.

Thanks,

Upvotes: 1

Views: 252

Answers (1)

tiny sunlight
tiny sunlight

Reputation: 6251

Try to search cacheColorHint in your old project.

likely:

<declare-styleable name="TwoWayGridView">
    <attr name="cacheColorHint" format="reference"></attr>
</declare-styleable>

Upvotes: 2

Related Questions