安卓默认颜色

发布于 2024-12-09 20:04:18 字数 72 浏览 2 评论 0原文

是否可以获得默认的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

日裸衫吸 2024-12-16 20:04:18

android.R.color 中定义了一些默认颜色,

Color c = getResources().getColor(android.R.color.primary_text_dark);

我通过将默认列表项的外观应用于我的控件解决了类似的问题,这导致它们在按下时以与本机颜色相同的方式突出显示。

There are some default colors defined in android.R.color

Color c = getResources().getColor(android.R.color.primary_text_dark);

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文