代码中按钮的颜色变化未反映

发布于 2024-12-06 05:18:28 字数 163 浏览 0 评论 0原文

我正在尝试更改代码中按钮的颜色,如下所示,

 btn_no5.setTextColor(0x8E35EF);

上述更改未反映出来(紫色),执行上述代码后文本消失。但如果我使用 xml 中的颜色,它就会反映出来。那么如何通过java来改变这个呢?

I'm trying to change a color of a button in code as below

 btn_no5.setTextColor(0x8E35EF);

the above change is not reflecting(purple color), the text is disappearing after execution of above piece of code. But if i use the color in xml its reflecting. So how to change this through java ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

貪欢 2024-12-13 05:18:28

您使用的颜色是完全透明的。请改用 0xFF8E35EF。第一个字节是 alpha(透明度)通道。

The color you are using is fully transparent. Use 0xFF8E35EF instead. The first byte is the alpha (transparency) channel.

浅笑依然 2024-12-13 05:18:28

像这样使用,

btn_no5.setTextColor(Color.parseColor("#8E35EF"));

use like this,

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