改变圆角按钮的颜色

当按钮使用shape.xml文件设置了圆角之后,如果直接在代码中使用setBackgroundColor(color),则会失去圆角效果

这种情况怎么解决呢

比如设置登录时的按钮:

1 GradientDrawable myGrad = (GradientDrawable) login.getBackground();
2 myGrad.setColor(this.getResources().getColor(R.color.login_bg_click));

 

你可能感兴趣的:(圆角)