我正在尝试使用
button.etBackgroundColor(getColor(R.color.color));
但是在这种情况下,新颜色不是圆形而是正方形。
我已阅读
Change background color of circular button android
但是我听不懂,也没有具体的解释。
我该怎么办?
答案 0 :(得分:0)
您可以通过设置背景色(如波纹管)来更改按钮的背景色
button.setBackgroundTintList(ColorStateList.valueOf(Color.parseColor("#00FFAA"))); // Just replace code with your color code
它将为您工作。