TLDR 版本
我明白为什么reference
在设置默认主题时将其用作指向默认样式的属性的格式,但是在定义颜色属性时使用reference|color
与仅使用有何不同?color
您已经可以使用@color/xxx
which 已经是对另一个资源的引用,那么引用是隐式的吗?如果不是,那么其中一个的用例是什么?
完整版本
我一直在遵循最佳实践,使用以下推荐的技术对我们的应用程序的自定义小部件进行主题化。
在 attrs.xml
<!-- Attributes holding default styles -->
<attr name="myWidgetStyle" format="reference" />
<attr name="myOtherWidgetStyle" format="reference" />
<!-- Custom attributes -->
<attr name="indicatorColor" format="color|reference" />
<!-- Assigning attributes to controls -->
<declare-styleable name="MyWidget">
<item name="android:text" />
<item name="indicatorColor" />
</declare-styleable>
<declare-styleable name="MyOtherWidget">
<item name="android:text" />
<item name="indicatorColor" />
</declare-styleable>
在styles.xml
<style name="ThemeBase">
<!-- Store default style in the style-reference attributes -->
<item name="myWidgetStyle">@style/MyWidget</item>
<item name="myOtherWidgetStyle">@style/MyOtherWidget</item>
<!-- Reference primaryColor attribute when defining the value for this one -->
<item name="indicatorColor">?primaryColor</item>
<!-- alternate: <item name="indicatorColor">?attr/primaryColor</item> -->
</style>
<style name="ThemeA" parent="ThemeBase">
<item name="primaryColor">@color/primaryColor_themeA</item>
</style>
<style name="ThemeB" parent="ThemeBase">
<item name="primaryColor">@color/primaryColor_themeB</item>
</style>
最后,在我的小部件的构造函数中,我将R.attr.myWidgetStyle
andR.attr.myOtherWidgetStyle
适当地传递给调用 tosuper
和 tocontext.obtainStyledAttributes
并且我可以根据需要获取定义的颜色。一切都按预期工作。我的控件主题恰当。
但是,我想知道的是我有时会在 attrs.xml 文件中看到这一点......
<attr name="indicatorColor" format="color" /> <-- Note no 'reference'
一切仍然有效,让我摸不着头脑,为什么你要写color|reference
而不是color
. 我已经尝试通过几个属性级联更改,以不同的顺序定义它们以及我能想到的任何其他结果以获得不同的结果,但它们都可以正常工作。
那么有人有解释吗?
更好的是,有人可以发布一个示例,显示和之间的不同行为color
,color|reference
因为到目前为止,我还没有找到一个。