我想使用styles.xml在布局中为按钮设置样式,如下所示。
styles.xml
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
<style name="SearchButton" parent="Widget.AppCompat.Button.Colored">
<item name="android:textColor">@color/white</item>
<item name="android:textSize">15sp</item>
<item name="colorButtonNormal">@color/colorPrimary</item>
</style>
然后使用android:theme将这种样式应用于按钮。
<Button
android:theme="@style/SearchButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_margin="15dp"
android:text="@string/search_button_text" />
在预览窗口中,此代码不会对默认的灰色“材质设计”按钮进行任何更改。
额外:我尝试使用“ style =“,它将部分运行,但它会忽略colorButtonNormal并改用accentColor。
答案 0 :(得分:0)
“彩色按钮”采用styles.xml文件中colorAccent属性的颜色。 将colorAccent的颜色更改为您选择的一种,以获得所需的背景色。
colorButtonNormal仅适用于具有默认样式的按钮。
您可以尝试此answer。