이걸 고려하세요:
styles.xml
<style name="BlueTheme" parent="@android:style/Theme.Black.NoTitleBar">
<item name="theme_color">@color/theme_color_blue</item>
</style>
attrs.xml
<attr name="theme_color" format="reference" />
color.xml
<color name="theme_color_blue">#ff0071d3</color>
따라서 테마 색상 은 테마에 의해 참조됩니다. 프로그래밍 방식으로 theme_color (참조)를 얻으려면 어떻게해야합니까? 일반적으로 나는 사용 getResources().getColor()
하지만이 경우에는 참조되기 때문에 사용 하지 않습니다!