3

TLDR 版本

我明白为什么reference在设置默认主题时将其用作指向默认样式的属性的格式,但是在定义颜色属性时使用reference|color与仅使用有何不同?color您已经可以使用@color/xxxwhich 已经是对另一个资源的引用,那么引用是隐式的吗?如果不是,那么其中一个的用例是什么?

完整版本

我一直在遵循最佳实践,使用以下推荐的技术对我们的应用程序的自定义小部件进行主题化。

在 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.myWidgetStyleandR.attr.myOtherWidgetStyle适当地传递给调用 tosuper和 tocontext.obtainStyledAttributes并且我可以根据需要获取定义的颜色。一切都按预期工作。我的控件主题恰当。

但是,我想知道的是我有时会在 attrs.xml 文件中看到这一点......

<attr name="indicatorColor" format="color" /> <-- Note no 'reference'

一切仍然有效,让我摸不着头脑,为什么你要写color|reference而不是color. 我已经尝试通过几个属性级联更改,以不同的顺序定义它们以及我能想到的任何其他结果以获得不同的结果,但它们都可以正常工作。

那么有人有解释吗?

更好的是,有人可以发布一个示例,显示和之间的不同行为colorcolor|reference因为到目前为止,我还没有找到一个。

4

1 回答 1

3

嗬!

属性格式只是为了让系统知道这个属性可以是什么类型的资源。

颜色 = 任何颜色。十六进制 (#ffffffff) 或链接到颜色资源 (@color/supa-awesome_color)。这里不允许使用@drawable/mega_icon

参考 = 任何参考(@color/supa_awesome_color,@drawable/mega_icon,@string/hi_there,...)

color|reference = 是上述的并集

于 2017-08-03T13:57:23.430 回答