我试图在运行时重置TextView的TextColor。我想将TextView的默认颜色设为@ColorInt
。我相信当前的主题知道这一点。
这是我尝试的内容:
public @ColorInt int getDefaultThemeColor(int attribute) {
TypedArray themeArray = mContext.getTheme().obtainStyledAttributes(new int[] {attribute});
try {
int index = 0;
int defaultColourValue = 0;
return themeArray.getColor(index, defaultColourValue);
}
finally {
themeArray.recycle();
}
}
其中属性为:
android.R.attr.textColor
android.R.attr.textColorPrimary
android.R.attr.textColorSecondary
他们都没有找到合适的颜色。我还尝试用以下方法替换方法的第一行:
TypedArray themeArray = mContext.getTheme().obtainStyledAttributes(R.style.AppTheme, new int[] {attribute});
我不想要肮脏的解决方案:
任何提示?
答案 0 :(得分:0)
根据here中的TextView代码,它应为android.R.styleable.TextAppearance_textColor
答案 1 :(得分:0)
以下代码为您提供了一个ColorStateList,它与您要求的不完全相同,但也可能适用于您需要的上下文:
TypedArray themeArray = theme.obtainStyledAttributes(new int[]{android.R.attr.textColorSecondary});
ColorStateList textColorSecondary = themeArray.getColorStateList(0);
答案 2 :(得分:0)
定义以下扩展功能(使用kotlin):
@ColorInt
@SuppressLint("ResourceAsColor")
fun Context.getColorResCompat(@AttrRes id: Int): Int {
val resolvedAttr = TypedValue()
theme.resolveAttribute(id, resolvedAttr, true)
val colorRes = resolvedAttr.run { if (resourceId != 0) resourceId else data }
return ContextCompat.getColor(this, colorRes)
}
然后按如下所示使用它:
val defaultText = context.getColorResCompat(android.R.attr.textColorPrimary)