最佳答案
想想这个:
Xml
<style name="BlueTheme" parent="@android:style/Theme.Black.NoTitleBar">
<item name="theme_color">@color/theme_color_blue</item>
</style>
Xml
<attr name="theme_color" format="reference" />
Xml
<color name="theme_color_blue">#ff0071d3</color>
因此主题引用了 主题颜色。我如何以编程方式获得主题 _ color (引用) ?通常我会使用 getResources().getColor()
,但是在这种情况下不会,因为它被引用了!