资源。getColor(int id)方法已弃用。
@ColorInt
@Deprecated
public int getColor(@ColorRes int id) throws NotFoundException {
return getColor(id, null);
}
我该怎么办?
资源。getColor(int id)方法已弃用。
@ColorInt
@Deprecated
public int getColor(@ColorRes int id) throws NotFoundException {
return getColor(id, null);
}
我该怎么办?
当前回答
tl; diana:
ContextCompat.getColor(context, R.color.my_color)
解释:
您将需要使用ContextCompat.getColor(),它是Support V4库的一部分(它将适用于前面的所有api)。
ContextCompat.getColor(context, R.color.my_color)
如果你还没有使用支持库,你将需要添加以下一行到你的应用程序构建中的依赖数组。gradle(注意:如果你已经使用了appcompat (V7)库,它是可选的):
compile 'com.android.support:support-v4:23.0.0' # or any version above
如果你关心主题,文档指定:
从M开始,返回的颜色将为指定的样式 上下文的主题
其他回答
我也很沮丧。我的需求非常直截了当。我想要的只是资源中的ARGB颜色,所以我写了一个简单的静态方法。
protected static int getARGBColor(Context c, int resId)
throws Resources.NotFoundException {
TypedValue color = new TypedValue();
try {
c.getResources().getValue(resId, color, true);
}
catch (Resources.NotFoundException e) {
throw(new Resources.NotFoundException(
String.format("Failed to find color for resourse id 0x%08x",
resId)));
}
if (color.type != TYPE_INT_COLOR_ARGB8) {
throw(new Resources.NotFoundException(
String.format(
"Resourse id 0x%08x is of type 0x%02d. Expected TYPE_INT_COLOR_ARGB8",
resId, color.type))
);
}
return color.data;
}
如果你不需要这些资源,使用parseColor(String): Color.parseColor(“# cc0066”)
我不想仅为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中消失。
这是我在Kotlin中使用的:
/**
* Returns a color associated with a particular resource ID.
*
* Wrapper around the deprecated [Resources.getColor][android.content.res.Resources.getColor].
*/
@Suppress("DEPRECATION")
@ColorInt
fun getColorHelper(context: Context, @ColorRes id: Int) =
if (Build.VERSION.SDK_INT >= 23) context.getColor(id) else context.resources.getColor(id);
使用Android支持库中的ResourcesCompat的getColor(Resources, int, Theme)方法。
int white = ResourcesCompat.getColor(getResources(), R.color.white, null);
我认为它比ContextCompat的getColor(Context, int)更好地反映了您的问题,因为您询问了资源。在API级别23之前,主题将不会被应用,方法将调用getColor(int),但您将不会看到已弃用的警告。主题也可以为空。
tl; diana:
ContextCompat.getColor(context, R.color.my_color)
解释:
您将需要使用ContextCompat.getColor(),它是Support V4库的一部分(它将适用于前面的所有api)。
ContextCompat.getColor(context, R.color.my_color)
如果你还没有使用支持库,你将需要添加以下一行到你的应用程序构建中的依赖数组。gradle(注意:如果你已经使用了appcompat (V7)库,它是可选的):
compile 'com.android.support:support-v4:23.0.0' # or any version above
如果你关心主题,文档指定:
从M开始,返回的颜色将为指定的样式 上下文的主题