java.lang.NoSuchMethodError: android.content.res.Resources.getDrawable /getColor

Posted 清风已逝_晚风如故

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java.lang.NoSuchMethodError: android.content.res.Resources.getDrawable /getColor相关的知识,希望对你有一定的参考价值。

    java.lang.NoSuchMethodError: android.content.res.Resources.getDrawable/getColor 异常错误。

              

 

   原因:Context类的getDrawable(res)/geColor(res)方法和Resources的getDrawable(res,theme)/getColor(res.theme)都是API21才添加的,低版本系统无法找到该方法所以报异常。

 

   解决办法:
     使用Resources的 getDrawable(res),但是该方法在API22已废弃。
     使用 ContextCompat.getDrawable(context,res)。
如:ContextCompat.getDrawable(MainActivity.this,R.drawable.radio_btn_background_show);

     

 

以上是关于java.lang.NoSuchMethodError: android.content.res.Resources.getDrawable /getColor的主要内容,如果未能解决你的问题,请参考以下文章