如何从颜色资源中获得color-int ?

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

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

440189 次浏览

你可以使用:

getResources().getColor(R.color.idname);

点击这里查看如何定义自定义颜色:

http://sree.cc/google/android/defining-custom-colors-using-xml-in-android < a href = " 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

定义你的颜色

值/ 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);

另请参阅

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

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

根据文档:

public int getColor (int id)
此方法在空气污染指数23中已弃用。 使用getColor(int, Theme)代替

对于getResources().getColorStateList(id)也是同样的解决方案:

你必须像这样改变它:

ContextCompat.getColorStateList(getContext(),id);

编辑2019

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

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

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

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

Nick Butcher - Droidcon Berlin -开发主题与风格

我更新到使用ContextCompat.getColor(context, R.color.your_color);,但有时(在一些设备/Android版本。我不确定),这会导致nullpointerexception。

因此,为了使它在所有设备/版本上都能工作,我回到了旧的方法,在空指针的情况下。

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));
}
}

最好的方法

正如@sat的答案,获取颜色的好方法是

ResourcesCompat.getColor(getResources(), R.color.your_color, null);

或者当你无法访问getResources()方法时使用下面的方法。

Context context  = getContext(); // like Dialog class
ResourcesCompat.getColor(context.getResources(), R.color.your_color, null);

我所做的是

public void someMethod(){
...
ResourcesCompat.getColor(App.getRes(), R.color.your_color, null);
}

这是最简单的使用任何地方在您的应用程序!即使在Util类或任何没有Context或getResource()的类中

问题(当你没有上下文时)

你没有Context访问权限时,就像你的Util类中的一个方法。

假设下面的方法没有上下文。

public void someMethod(){
...
// can't use getResource() without Context.
}

现在你将在这个方法中传递Context作为参数,并使用getResources().

public void someMethod(Context context){
...
context.getResources...
}
所以这里有一个独特的解决方案,通过它你可以像Util class一样从任何地方访问资源。 将Resources添加到你的Application类中,如果不存在则创建一个
import android.app.Application;
import android.content.res.Resources;


public class App extends Application {
private static App mInstance;
private static Resources res;




@Override
public void onCreate() {
super.onCreate();
mInstance = this;
res = getResources();
}


public static App getInstance() {
return mInstance;
}


public static Resources getResourses() {
return res;
}


}

将name字段添加到manifest.xml <application标记中。(如未添加)

<application
android:name=".App"
...
>
...
</application>

现在可以开始了。在应用程序的任何地方使用ResourcesCompat.getColor(App.getRes(), R.color.your_color, null);

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

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;
}
}
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))

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

最近工作方法:

getColor(R.color.snackBarAction)

如果你当前的最小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));
}

找到了一个更简单的方法:

Color.parseColor(getString(R.color.idname));

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

String.valueOf(getResources().getColor(R.color.enurse_link_color))

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

R.color.color_name

mytextView.setTextColor(R.color.red_900)