具有多种颜色主题的 Android 小部件
设置保存在 SharedPreferences 上的小部件颜色主题的最佳方法是什么。用户选择他们喜欢的颜色主题,我以编程方式设置主题。
例如,我有两个 ID 为“widgetThemeDate”的 TextView 样式:
<style name="widgetThemeDate" parent="@style/widgetThemeLight">
<item name="android:textColor">@color/colorWhite</item>
</style>
<style name="widgetThemeDate" parent="@style/widgetThemeDark">
<item name="android:textColor">@color/colorBlack</item>
</style>
在这种情况下,我收到以下错误:“错误:资源条目 widgetThemeDate 已包含包项 android:textColor。”
我该如何设置“widgetThemeDate”颜色取决于用户的选择?
What is the best method to set a widget colors theme saved on SharedPreferences. Users choose their preferred colors theme and programatically I set the theme.
For example I have two styles for a TextView with id "widgetThemeDate":
<style name="widgetThemeDate" parent="@style/widgetThemeLight">
<item name="android:textColor">@color/colorWhite</item>
</style>
<style name="widgetThemeDate" parent="@style/widgetThemeDark">
<item name="android:textColor">@color/colorBlack</item>
</style>
In this case I receive the following error: "error: Resource entry widgetThemeDate already has bag item android:textColor."
How can I set "widgetThemeDate" color depending user's choice?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法以编程方式在视图上设置整个主题(请参阅 此讨论),但您可以通过编程方式更改某些方面。例如。你可以使用 setTextColor()方法以编程方式更改 TextView 上的文本颜色。
You can't set whole themes on a view programatically (see this discussion), but you can change certain aspects progamatically. For instance. you case you could use the setTextColor() method to change the color of text programatically on ay TextView.