假设我创建了一个像
这样的自定义按钮<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#FFFFFF" />
<corners android:radius="5dp"/>
在我的布局文件中,我使用圆角按钮
<Button
style="@style/login_button"
android:background="@drawable/button_rounded"
android:text="Awesome button"
/>
是否可以从布局文件中更改按钮的颜色?我只想要一个圆角矩形按钮,但希望能够根据需要改变背景颜色。