资源。getColor(int id)方法已弃用。

@ColorInt
@Deprecated
public int getColor(@ColorRes int id) throws NotFoundException {
    return getColor(id, null);
}

我该怎么办?


当前回答

在Android Marshmallow中,许多方法都被弃用了。

例如,获取颜色使用

ContextCompat.getColor(context, R.color.color_name);

也可以画出来

ContextCompat.getDrawable(context, R.drawable.drawble_name);

其他回答

如果你当前的最小API级别是23,你可以简单地使用getColor(),就像我们使用getString()获取字符串资源一样:

//example
textView.setTextColor(getColor(R.color.green));
// if `Context` is not available, use with context.getColor()

你可以限制API级别低于23:

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
    textView.setTextColor(getColor(R.color.green));
} else {
    textView.setTextColor(getResources().getColor(R.color.green));
}

但为了简单起见,你可以像下面这样回答:

textView.setTextColor(ContextCompat.getColor(context, R.color.green))

从资源。

来自ContextCompat AndroidX。

来自ContextCompat Support

在Kotlin中的RecyclerView中

inner class ViewHolder(itemView: View) : RecyclerView.ViewHolder(itemView) {
    fun bind(t: YourObject, listener: OnItemClickListener.YourObjectListener) = with(itemView) {
        textViewcolor.setTextColor(ContextCompat.getColor(itemView.context, R.color.colorPrimary))
        textViewcolor.text = t.name
    }
}

对于所有的Kotlin用户:

context?.let {
    val color = ContextCompat.getColor(it, R.color.colorPrimary)
    // ...
}

最好的等效方法是使用ContextCompat。getColor和ResourcesCompat。色鬼。我做了一些扩展函数用于快速迁移:

@ColorInt
fun Context.getColorCompat(@ColorRes colorRes: Int) = ContextCompat.getColor(this, colorRes)

@ColorInt
fun Fragment.getColorCompat(@ColorRes colorRes: Int) = activity!!.getColorCompat(colorRes)

@ColorInt
fun Resources.getColorCompat(@ColorRes colorRes: Int) = ResourcesCompat.getColor(this, colorRes, null)

如果你不需要这些资源,使用parseColor(String): Color.parseColor(“# cc0066”)