安卓默认颜色
是否可以获得默认的 Android 颜色(例如,当用户按下按钮时为橙色)?我有列表,我想将默认的 Android 颜色设置为标题。
Is this possible to get default Android color (for example orange, when user pressed button)? I have list and I want to set default Android color to header.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
android.R.color 中定义了一些默认颜色,
我通过将默认列表项的外观应用于我的控件解决了类似的问题,这导致它们在按下时以与本机颜色相同的方式突出显示。
There are some default colors defined in
android.R.color
I solved a similar problem by applying the default list item's appearance to my controls, which caused them to highlight when pressed in the same way as the native one.