Android studio 报错:Error:Error: Expected resource of type drawable [ResourceType]

解决方法:

 

这样的写法报错,

//        animCard.setBackgroundResource(R.anim.multi_finger_animation);
animCard.setImageResource(R.anim.multi_idcard_animation);

解决办法:

在build.gradle文件加入下面的代码
lintOptions{
disable "ResourceType"
}
posted @ 2016-07-03 16:04  我们112  阅读(1366)  评论(0)    收藏  举报