要改變Android中Button的背景顏色,可以使用如下方法:
<Button
android:id="@+id/myButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Click Me"
android:background="@color/colorPrimary" />
在這個例子中,@color/colorPrimary
是一個顏色資源,你可以在res/values/colors.xml
文件中定義它。
Button myButton = findViewById(R.id.myButton);
myButton.setBackgroundColor(getResources().getColor(R.color.colorPrimary));
res/drawable
目錄下創建一個button_selector.xml
文件:<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" android:drawable="@color/colorPrimaryDark" />
<item android:drawable="@color/colorPrimary" />
</selector>
然后在Button的XML布局文件中設置背景:
<Button
android:id="@+id/myButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Click Me"
android:background="@drawable/button_selector" />