gpt4 book ai didi

android - 设置按钮颜色

转载 作者:太空狗 更新时间:2023-10-29 15:27:01 26 4
gpt4 key购买 nike

这可以改变按钮的颜色:

myButton.setBackgroundResource(R.drawable.button_grey);

这不是

int myColor = R.drawable.button_grey;
myButton.setBackgroundResource(myColor);

不给按钮任何颜色。为什么以及如何解决?

最佳答案

myButton.setBackgroundColor(Color.parseColor("red"));
// or
myButton.setBackgroundColor(Color.RED);
// or
myButton.setBackgroundColor(Color.rgb(int,int,int);

关于android - 设置按钮颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18467607/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com