要改變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系統自帶的顏色值,也可以自定義顏色值。