调用android的getColor()方法出现 java.lang.NoSuchMethodError: android.content.res.Resources.getColor
仓廪实则知礼节,衣食足则知荣辱。这篇文章主要讲述调用android的getColor()方法出现 java.lang.NoSuchMethodError: android.content.res.Resources.getColor相关的知识,希望能为你提供帮助。
1.java.lang.NoSuchMethodError: android.content.res.Resources.getDrawable/getColor
或者 java.lang.NoSuchMethodError:android.content.Context.getDrawable/geColor
原因:Context类的getDrawable(res)/geColor(res)方法和Resources的getDrawable(res,theme)/getColor(res.theme)都是API21才添加的,低版本系统无法找到该方法所以报异常。
解决办法:
使用Resources的getDrawable(res),但是该方法在API22已废弃。
使用ContextCompat.getDrawable(context,res)。
【调用android的getColor()方法出现 java.lang.NoSuchMethodError: android.content.res.Resources.getColor】
原文链接:https://blog.csdn.net/qq_22256565/article/details/52133565
推荐阅读
- Android_(游戏)打飞机04(绘画敌机添加子弹)
- QWidget编写的安卓app
- 线段树+dfs序(Apple Tree )(Assign the task )
- Struts 2动作介绍和用法详解
- Struts 2 OGNL使用介绍
- Struts 2 ActionInvocation用法介绍
- Struts 2 ValueStack使用详细教程
- Struts 2 ActionContext用法详细教程
- Struts 2拦截器使用教程介绍