要更改Android按鈕的默認顏色,您可以使用以下兩種方法:
方法一:使用XML屬性更改按鈕顏色
<resources>
<color name="button_default_color">#FF0000</color>
</resources>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
android:background="@color/button_default_color" />
方法二:使用代碼更改按鈕顏色
<Button
android:id="@+id/my_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
Button myButton = findViewById(R.id.my_button);
myButton.setBackgroundColor(Color.RED);
無論您選擇哪種方法,都可以根據您的需要更改按鈕的默認顏色。