有没有办法从颜色资源中获取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)
);
答案 0 :(得分:827)
您可以使用:
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):强>
以下代码可用于Marshmallow之前和之后(API 23)
ResourcesCompat.getColor(getResources(), R.color.your_color, null); //without theme
ResourcesCompat.getColor(getResources(), R.color.your_color, your_theme); //with theme
答案 1 :(得分:106)
基于新的 Android支持库(以及this更新),现在您应该致电:
ContextCompat.getColor(context, R.color.name.color);
public int getColor (int id)
此方法已在 API级别23 中弃用。 请改用getColor(int,Theme)
getResources().getColorStateList(id)
:
你必须改变它:
ContextCompat.getColorStateList(getContext(),id);
答案 2 :(得分:30)
值/ 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 backgroundColor = ContextCompat.getColor(context, R.color.my_view_color);
// Color backgroundColor = ... (Don't do this. The color is just an int.)
myView.setBackgroundColor(backgroundColor);
答案 3 :(得分:3)
我更新后使用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));
}
}
答案 4 :(得分:3)
作为@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;
}
}
将名称字段添加到您的manifest.xml
<application
标签中。 (如果尚未添加)
<application
android:name=".App"
...
>
...
</application>
现在你很好。在应用程序中的任何地方使用ResourcesCompat.getColor(App.getRes(), R.color.your_color, null);
。
答案 5 :(得分:2)
如果您当前的分钟数。 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));
但是请注意,API级别getResources().getColor()
中不推荐使用23
。在这种情况下,将上面替换为:
textView.setTextColor(ContextCompat.getColor(this /*context*/, R.color.green)) //Im in an activity, so I can use `this`
中的功能的助手
如果需要,可以使用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));
}
答案 6 :(得分:2)
找到了一种更有效的简便方法:
Color.parseColor(getString(R.color.idname);
答案 7 :(得分:1)
这里的答案过于复杂。无需支持库。
getResources().getColor(R.color.idname);
getResources().getColor(R.color.idname, null);
添加支票即可完成
int color = Build.VERSION.SDK_INT<23 ? getResources().getColor(R.color.idname) : getResources().getColor(R.color.idname,null)
答案 8 :(得分:0)
从非活动类别访问颜色可能很困难。我发现的一种替代方法是使用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;
}
}
答案 9 :(得分:0)
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))
答案 10 :(得分:0)
有关可能有助于在搜索结果中浮现此问题的另一个用例的更多信息,我想将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)
);
答案 11 :(得分:0)
最近的工作方法:
getColor(R.color.snackBarAction)
答案 12 :(得分:0)
或者如果您具有函数(字符串文本,字符串颜色)并且需要传递资源颜色字符串,则可以按照以下步骤操作
String.valueOf(getResources().getColor(R.color.enurse_link_color)
答案 13 :(得分:0)
在 kotlin 中只需在您的活动中使用它
R.color.color_name
前-
mytextView.setTextColor(R.color.red_900)
答案 14 :(得分:-1)
那
final int Activity.getColor(int resourceID)
我看不到它不推荐使用的地方。