有没有办法从颜色资源中获得一个color-int ?
我试图获得在资源(R.color.myColor)中定义的颜色的单个红色,蓝色和绿色组件,以便我可以将三个搜索条的值设置为特定级别。
有没有办法从颜色资源中获得一个color-int ?
我试图获得在资源(R.color.myColor)中定义的颜色的单个红色,蓝色和绿色组件,以便我可以将三个搜索条的值设置为特定级别。
当前回答
ContextCompat.getColor(context, R.color.your_color);
在活动
ContextCompat.getColor(actvityname.this, R.color.your_color);
在片段
ContextCompat.getColor(getActivity(), R.color.your_color);
例如:
tvsun.settextcolour(ContextCompat.getColor(getActivity(), R.color.your_color))
其他回答
定义你的颜色
值/ color.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- color int as #AARRGGBB (alpha, red, green, blue) -->
<color name="orange">#fff3632b</color>
...
<color name="my_view_color">@color/orange</color>
</resources>
获取color int并设置它
int backgroundColor = ContextCompat.getColor(context, R.color.my_view_color);
// Color backgroundColor = ... (Don't do this. The color is just an int.)
myView.setBackgroundColor(backgroundColor);
另请参阅
如何设置视图的背景色 彩色文档 颜色样式设计文档
如果你当前的最小API级别是23,你可以简单地使用getColor(),就像我们使用getString()一样:
//example
textView.setTextColor(getColor(R.color.green));
// if context is not available(ex: not in activity) use with context.getColor()
如果你想要低于API级别23,只需使用这个:
textView.setTextColor(getResources().getColor(R.color.green));
但请注意,getResources(). getcolor()在API级别23中已弃用。在这种情况下,将上面的替换为:
textView.setTextColor(ContextCompat.getColor(this /*context*/, R.color.green)) //Im in an activity, so I can use `this`
ContextCompat:用于访问Context中的特性的Helper
如果你愿意,你可以像下面这样约束SDK_INT:
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
textView.setTextColor(getColor(R.color.green));
} else {
textView.setTextColor(getResources().getColor(R.color.green));
}
关于另一个用例的更多信息可能有助于在搜索结果中显示这个问题,我想将alpha应用于我的资源中定义的颜色。
使用@sat的正确答案:
int alpha = ... // 0-255, calculated based on some business logic
int actionBarBackground = getResources().getColor(R.color.actionBarBackground);
int actionBarBackgroundWithAlpha = Color.argb(
alpha,
Color.red(actionbarBackground),
Color.green(actionbarBackground),
Color.blue(actionbarBackground)
);
ContextCompat.getColor(context, R.color.your_color);
在活动
ContextCompat.getColor(actvityname.this, R.color.your_color);
在片段
ContextCompat.getColor(getActivity(), R.color.your_color);
例如:
tvsun.settextcolour(ContextCompat.getColor(getActivity(), R.color.your_color))
你可以使用:
getResources().getColor(R.color.idname);
点击这里查看如何定义自定义颜色:
http://sree.cc/google/android/defining-custom-colors-using-xml-in-android
编辑(1): 由于getColor(int id)现在已弃用,必须使用:
ContextCompat.getColor(context, R.color.your_color);
(在支持库23中添加)
编辑(2):
以下代码可用于棉花糖前和后(API 23)
ResourcesCompat.getColor(getResources(), R.color.your_color, null); //without theme
ResourcesCompat.getColor(getResources(), R.color.your_color, your_theme); //with theme