Android 轻松切换应用程序配色方案
您将如何在您的应用程序中实现不同的颜色主题? 我现在能看到的只是在创建每个活动和控件时简单设置颜色...
另外,如何在 xml 中存储不同的配色方案? 只是具有不同名称的条目?
谢谢你!
How would you implement different color themes in your app?
All I can see now is plain set color onCreate every activity and control...
Also, how would you store different color schemes in xml?
Just an entries of with different names?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用在 XML 中声明的自定义 主题。如果您以前使用过它们,它们与 CSS 非常相似。
编辑:
这是在运行时更改主题的更好示例< /a>
Use custom Themes, which are declared in XML. They are very similar to CSS, if you've used them before.
EDIT:
Here's a better example of changing the theme at run time