如何以编程方式获取颜色属性的值

当我用来找出颜色值时,我得到:resolveAttribute()?attr/colorControlNormal236

TypedValue typedValue = new TypedValue();
getTheme().resolveAttribute(R.attr.colorControlNormal, typedValue, true);
int color = typedValue.data;
// 236 

但是,当我使用具有以下元素的 XML 布局时:TextView

<TextView
  android:id="@+id/textView"
  style="?android:attr/textAppearance"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:textColor="?attr/colorControlNormal"
  android:text="@null" />

...和以下 Java 代码:

View textView = findViewById(R.id.textView);
int color = ((TextView) textView).getCurrentTextColor();
// -1979711488

我得到的颜色值为-1979711488


为什么这些结果会有所不同?我期望获得相同的颜色值,但它们不是。

第二种方法(我相信)返回正确的颜色值。为什么我的第一种方法是错误的?

我宁愿获得的颜色值,而不需要使用实际元素。我该怎么做??attr/colorControlNormal


答案 1

我相信而不是这样:


    TypedValue typedValue = new TypedValue();
    getTheme().resolveAttribute(R.attr.colorControlNormal, typedValue, true);
    int color = typedValue.data;

您应该这样做:


    TypedValue typedValue = new TypedValue();
    getTheme().resolveAttribute(R.attr.colorControlNormal, typedValue, true);
    int color = ContextCompat.getColor(this, typedValue.resourceId)


答案 2

我认为这是正确的,请检查一下

十六进制

Integer intColor = -1979711488138;
String hexColor = "#" + Integer.toHexString(intColor).substring(2);

int color = getCurrentTextColor();
int a = Color.alpha(color);
int r = Color.red(color);
int g = Color.green(color);
int b = Color.blue(color);

推荐