天天看點

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"
}