为了账号安全,请及时绑定邮箱和手机立即绑定

getColor(Int Id)在Android6.0 Marshmlow上被废弃(API 23)

getColor(Int Id)在Android6.0 Marshmlow上被废弃(API 23)

肥皂起泡泡 2019-07-15 09:22:09
getColor(Int Id)在Android6.0 Marshmlow上被废弃(API 23)这个Resources.getColor(int id)方法已被废弃。@ColorInt@Deprecatedpublic int getColor(@ColorRes int id) throws NotFoundException {     return getColor(id, null);}我该怎么办?
查看完整描述

3 回答

?
翻过高山走不出你

TA贡献1875条经验 获得超3个赞

我不想只为了getColor所以我用的是

public static int getColorWrapper(Context context, int id) {
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
        return context.getColor(id);
    } else {
        //noinspection deprecation
        return context.getResources().getColor(id);
    }}

我想这段代码应该运行得很好,并且不推荐。getColor不能从API<23中消失。


查看完整回答
反对 回复 2019-07-15
  • 3 回答
  • 0 关注
  • 684 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信