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

来源:互联网 发布:动态称重算法 编辑:程序博客网 时间:2024/06/02 07:19

这样的写法报错,

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

解决办法:

在build.gradle文件加入下面的代码
lintOptions{
disable "ResourceType"
}


0 0
原创粉丝点击