我有两种基于holo的ABS样式,紫色和石灰色,用户可以从设置中设置主题。
在我的布局中,我有一个带有自定义textAppearance的TextView,我想根据活动样式更改该textAppearth。
(如果激活紫色主题,则文本必须为白色,如果激活石灰主题,则文字必须为石灰)
有没有一种方法可以从XML中做到这一点?
编辑
如果标题有误导性,我很抱歉。
(如果紫色主题被激活,则文本必须为白色,如果石灰主题已激活(文本必须为石灰)
试试看:
<style name="PurpleTheme" parent="...">
<!-- define the style for the text appearance here. Following is an example -->
<item name="android:textAppearance">@style/MyWhiteText</item>
</style>
<style name="LimeTheme" parent="...">
<!-- define the style for the text appearance here. Following is an example -->
<item name="android:textAppearance">@style/MyLimeText</item>
</style>
<style name="MyWhiteText" parent="@android:style/TextAppearance">
<item name="android:textColor">@color/white</item>
</style>
<style name="MyWhiteText" parent="@android:style/TextAppearance">
<item name="android:textColor">@color/lime</item>
</style>
或者,如果您不想将颜色设置为所有文本视图,请执行以下操作:
声明一个属性:
<attr name="myTextViewColor" format="reference" />
在你的主题中这样使用:
<style name="PurpleTheme" parent="...">
<item name="myTextViewColor">@color/white</item>
</style>
<style name="LimeTheme" parent="...">
<item name="myTextViewColor">@color/lime</item>
</style>
现在,您可以像这样设置特定TextView的颜色:
<TextView
android:textColor="?attr/myTextViewColor"
[...] />