要改变Android按钮的颜色,可以通过在xml文件中设置按钮的background属性或者通过编程方式设置按钮的背景颜色来实现。以下是两种方法:
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
android:background="@color/colorButton"
/>
在colors.xml文件中定义颜色值:
<color name="colorButton">#FF4081</color>
Button button = findViewById(R.id.button);
button.setBackgroundColor(getResources().getColor(R.color.colorButton));
注意:在这两种方法中,颜色值可以使用Android系统自带的颜色值,也可以自定义颜色值。