I am new in android.
I just made a new layout with one text bar and 2 buttons but it didn\'t work, I am posting the stack trace and my relative layout file any idea about th
What fixed it in my case was to change the location of my color.xml
As I copied it from some other project of mine and pasted it in the new project, Android Studio placed it in the v21
folder, meaning my emulator (v19) could not reach the resource file color.xml
.
I did the following to fix it:
color.xml
.Refactor
> Move
.-v21
.Now, my "old" emulator was able to read the file.
I hope it helps..