码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2017-04-13 10:58:30      阅读:1141      评论:0      收藏:0      [点我收藏+]

标签:ges   com   span   his   使用   raw   lan   context   img   

    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

标签:ges   com   span   his   使用   raw   lan   context   img   

原文地址:http://www.cnblogs.com/wisdom-windy/p/6702789.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!