在Android中,可以通過以下方法設置按鈕的背景顏色:
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
android:background="@color/colorAccent" />
其中,@color/colorAccent
是指向顏色資源文件中定義的顏色。
Button button = findViewById(R.id.button);
button.setBackgroundColor(ContextCompat.getColor(this, R.color.colorAccent));
其中,R.color.colorAccent
是指向顏色資源文件中定義的顏色。