int从颜色资源
有没有办法从颜色资源获取color-int? 我试图获取资源中定义的颜色(R.color.myColor)的单个红色,蓝色和绿色组件,以便可以将三个搜索条的值设置为特定级别。
有关可能有助于在搜索结果中显示此问题的其他用例的更多信息,我想将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);