Error using eclipse for Android - No resource found that matches the given name

后端 未结 15 1610
误落风尘
误落风尘 2020-12-10 10:42

Common problem I\'m sure, but I can\'t figure it out. In my AndroidManifest.xml and main.xml I\'m getting the no resource found that matches the given name. I\'ve double c

相关标签:
15条回答
  • 2020-12-10 11:45

    I had problem with puuting background image. Error was the same. But I solved it by removing extension of file

    android:background="@drawable/sky.png" --->> android:background="@drawable/sky"

    0 讨论(0)
  • 2020-12-10 11:46

    Project ---> Clean does the trick in most of the cases. It did in mine.

    0 讨论(0)
  • 2020-12-10 11:48

    Accidentally moved the "values" folder outside of the "res" folder. Moved it back and it fired up!

    0 讨论(0)
提交回复
热议问题