代码中按钮的颜色变化未反映
我正在尝试更改代码中按钮的颜色,如下所示,
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您使用的颜色是完全透明的。请改用 0xFF8E35EF。第一个字节是 alpha(透明度)通道。
The color you are using is fully transparent. Use 0xFF8E35EF instead. The first byte is the alpha (transparency) channel.
像这样使用,
use like this,