将文本设置为“主要”在安卓中
在浏览内置的 Android 主题/样式时,我注意到对 textColorPrimary、textColorSecondary 等的引用。我想将其实现到我自己的主题中,但找不到任何将 textview (或任何视图)设置为“primary”或“ 我是否忽略了某些
事情或者无法完成?
While looking through the built in Android themes/styles I noticed references to textColorPrimary, textColorSecondary etc. I would like to implement this in to my own theme but cannot find any way of setting a textview (or any view) to "primary" or "secondary" etc.
Am I overlooking something or is it not possible to be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您看到的“textColor_____”引用是对颜色选择器的引用。您可以在 TextView 的 xml 定义中将它们与诸如 'android:textColor="?android:textColorSecondary"' 之类的行一起使用。
请参阅此了解更多详细信息:
http://developer.android.com/guide/topics/resources /accessing-resources.html#ReferencesToThemeAttributes
The references you're seeing to "textColor_____" are references to color selectors. You use them with a line like 'android:textColor="?android:textColorSecondary"' in the xml definition of your TextView.
See this for more detail:
http://developer.android.com/guide/topics/resources/accessing-resources.html#ReferencesToThemeAttributes