从颜色资源获取color-int
有没有办法从一个颜色资源获取一个color-int? 我正在尝试获取资源中定义的颜色(R.color.myColor)的单个红色,蓝色和绿色组件,以便可以将三个search栏的值设置为特定级别。
有关可能有助于在search结果中显示此问题的其他用例的更多信息,我想将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) );
您可以使用:
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中)
EDIT(2):
下面的代码可以用于棉花糖之前和之后(API 23)
ResourcesCompat.getColor(getResources(), R.color.your_color, null); //without theme ResourcesCompat.getColor(getResources(), R.color.your_color, your_theme); //with theme
基于新的Android支持库 (和此更新),现在您应该调用:
ContextCompat.getColor(context, R.color.name.color);
根据文件 :
public int getColor (int id)
此方法在API级别23中已被弃用。 改用getColor(int,Theme)
getResources().getColorStateList(id)
方法是一样的getResources().getColorStateList(id)
:
你必须像这样改变它:
ContextCompat.getColorStateList(getContext(),id);
这里是一个更完整的例子(API 26及更新版本):
定义你的颜色
值/ 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>
获取颜色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);
也可以看看
- 如何设置View的背景颜色
- 彩色文档
- 颜色风格devise文档
我更新了使用ContextCompat.getColor(context, R.color.your_color);
但有时(在某些设备/ Android版本上,我不确定)是否会导致NullPointerExcepiton。
所以为了使它在所有设备/版本上都能正常工作,在空指针的情况下,我会回到原来的方式。
try { textView.setTextColor(ContextCompat.getColor(getActivity(), R.color.text_grey_dark)); } catch(NullPointerException e) { if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) { textView.setTextColor(getContext().getColor(R.color.text_grey_dark)); } else { textView.setTextColor(getResources().getColor(R.color.text_grey_dark)); } }