我读了几篇文章,但没有一个有有效的解决方案。
一旦你这样做
button.setBackgroundColor(0x00000000);
如何将按钮的背景颜色恢复为默认颜色?
我读了几篇文章,但没有一个有有效的解决方案。
一旦你这样做
button.setBackgroundColor(0x00000000);
如何将按钮的背景颜色恢复为默认颜色?
采用:
btn.setBackgroundResource(android.R.drawable.btn_default);
如果使用设置背景颜色
btn.getBackground().setColorFilter(Color.RED, PorterDuff.Mode.MULTIPLY);
可以使用以下方法重置:
btn.getBackground().clearColorFilter();
与以这种方式设置颜色相反,button.setBackgroundColor()
可以保留按钮的形状。
没有人提到TRANSPARENT 像这样使用它
findViewById(R.id.button_id).setBackgroundColor(Color.TRANSPARENT);
晚点再谢我
这对我来说效果更好:
Button defbtn=new Button(this);
btn.setBackground(defbtn.getBackground());