Home > OS >  Duplicate resource id for xml views
Duplicate resource id for xml views

Time:10-15

I am facing a weird issue. I am setting ids to XML views. When I try to reference the id in my activity or fragment I am getting a double reference to it. Please find the screenshot :

enter image description here

It is referencing the same view. And because of this none of my changes in the XML file are reflecting on my code.

CodePudding user response:

Android Studio makes a lot of files as caches and does not delete them. This can cause trouble when there is a need to make new files, so try clean project Invalidate cache and Restart Project in Android Studio.

CodePudding user response:

Try Invalidate caches/restart, and also try clean project and rebuild project.

  • Related