如何以编程方式获取颜色属性的值
2022-09-03 08:45:57
当我用来找出颜色值时,我得到:resolveAttribute()
?attr/colorControlNormal
236
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