📌  相关文章
📜  android 以编程方式使用属性颜色 - 无论代码示例

📅  最后修改于: 2022-03-11 14:59:49.760000             🧑  作者: Mango

代码示例1
TypedValue typedValue = new TypedValue();
Theme theme = context.getTheme();
theme.resolveAttribute(R.attr.theme_color, typedValue, true);
@ColorInt int color = typedValue.data;