Android项目运行报错:

Resources$NotFoundException: Resource "com.kw.fsd:drawable/bg" (7f07005f) is not a Drawable (color or path)

刚加进来的背景图片bg.jpg找不到:

Android报错:Resources$NotFoundException: Resource “xxx“ is not a Drawable (color or path)_android-studio

原因:在磁盘上,图片在drawable-v24目录中,而drawable中没有。

Android报错:Resources$NotFoundException: Resource “xxx“ is not a Drawable (color or path)_运行报错_02

Android报错:Resources$NotFoundException: Resource “xxx“ is not a Drawable (color or path)_运行报错_03

解决办法:

在drawable目录中也放入图片。在Android Studio中的目录视图自动刷新了:

Android报错:Resources$NotFoundException: Resource “xxx“ is not a Drawable (color or path)_运行报错_04

重新运行,问题解决。