有没有办法从颜色资源中获得一个color-int ?

我试图获得在资源(R.color.myColor)中定义的颜色的单个红色,蓝色和绿色组件,以便我可以将三个搜索条的值设置为特定级别。


当前回答

在kotlin中,只需在您的活动中使用它

R.color.color_name

ex-

mytextView.setTextColor(R.color.red_900)

其他回答

从非活动类中访问颜色可能很困难。我发现的一个替代方法是使用enum。Enum提供了很大的灵活性。

public enum Colors
{
  COLOR0(0x26, 0x32, 0x38),    // R, G, B
  COLOR1(0xD8, 0x1B, 0x60),
  COLOR2(0xFF, 0xFF, 0x72),
  COLOR3(0x64, 0xDD, 0x17);


  private final int R;
  private final int G;
  private final int B;

  Colors(final int R, final int G, final int B)
  {
    this.R = R;
    this.G = G;
    this.B = B;
  }

  public int getColor()
  {
    return (R & 0xff) << 16 | (G & 0xff) << 8 | (B & 0xff);
  }

  public int getR()
  {
    return R;
  }

  public int getG()
  {
    return G;
  }

  public int getB()
  {
    return B;
  }
}

关于另一个用例的更多信息可能有助于在搜索结果中显示这个问题,我想将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)
);

基于新的Android支持库(和这次更新),现在你应该调用:

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

根据文档:

public int getColor (int id)

此方法在API级别23中已弃用。 使用getColor(int, Theme)代替

它是相同的解决方案getResources().getColorStateList(id):

你必须像这样改变它:

ContextCompat.getColorStateList(getContext(),id);

编辑2019

关于ThemeOverlay,使用最近视图的上下文:

val color = ContextCompat.getColor(
  closestView.context,
  R.color.name.color
)

这样你就可以根据你的ThemeOverlay得到正确的颜色。

当你在同一个活动中使用不同的主题时特别需要,比如黑暗/光明主题。如果你想了解更多关于主题和风格的知识,建议听这个演讲:用风格开发主题

或者如果你有一个函数(字符串文本,字符串颜色),你需要传递资源颜色字符串,你可以这样做

String.valueOf(getResources().getColor(R.color.enurse_link_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);

另请参阅

如何设置视图的背景色 彩色文档 颜色样式设计文档