Reputation: 650
I had asked this before but did't get reply so I'm asking again and trying to better format title and content.
I had compiled my android app but for some reason app is showing different drawables than difined one. This doesn't appeared after changing XML code (actually I didn't changed layout code for that activity. For example in XML I have defined in imageview @drawable/ic_thumb_up_black_24dp
but it show material speaker icon. I could also mention that I have updated and added few libraries using implementation. Removing not-used libraries and updating gradle configuration didn't fixed it. Any solution how to fix this? Thanks for all answers.
Upvotes: 1
Views: 102
Reputation: 4798
i am not really sure what happens exactly but i think you are trying to name your
drawable resource same as android specific drawable resource name so when you app
going to be execute the priority of android specific resources are higher than
yours .
Upvotes: 1