要设置button的颜色,可以使用以下方法:
- 在xml布局文件中设置button的背景颜色:
- 在java代码中设置button的背景颜色:
Button button = findViewById(R.id.button); button.setBackgroundColor(ContextCompat.getColor(this, R.color.colorPrimary));
- 使用selector来设置button的不同状态下的颜色:
在res/drawable文件夹下创建一个selector文件,比如button_selector.xml:
然后在xml布局文件中设置button的背景为该selector文件: