gpt4 book ai didi

android - 无法继承样式上的按钮颜色

转载 作者:行者123 更新时间:2023-11-30 01:47:47 24 4
gpt4 key购买 nike

我正在尝试在样式上定义按钮属性。我的代码是

<style name="button">
<item name="android:paddingTop">5dp</item>
<item name="android:paddingBottom">5dp</item>
<item name="android:textAllCaps">false</item>
<item name="colorButtonNormal">#f37022</item>
<item name="android:textColor">#ffffff</item>
</style>

并用作

<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Prepaid Package"
style="@style/button"/>

但是按钮正常状态的颜色没有变化。

此按钮样式仅适用于某些按钮。不适用于所有按钮。

现在怎么办?

最佳答案

问题澄清后编辑

在 res/values/中保存你的 style.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="custom_button" parent="@android:style/Widget.Button">
<item name="android:paddingTop">5dp</item>
<item name="android:paddingBottom">5dp</item>
<item name="android:textAllCaps">false</item>
<item name="colorButtonNormal">#f37022</item>
<item name="android:textColor">#ffffff</item>
</style>

像这样应用它:

<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Prepaid Package"
style="@style/custom_button"/>

第一个回答

需要继承父样式。

<style name="Button" parent="@android:style/Widget.Button">
<item name="android:paddingTop">5dp</item>
<item name="android:paddingBottom">5dp</item>
<item name="android:textAllCaps">false</item>
<item name="colorButtonNormal">#f37022</item>
<item name="android:textColor">#ffffff</item>
</style>

这样,所有未设置样式的按钮都将具有您的自定义样式。即无需输入样式值。

<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Prepaid Package"/>

关于android - 无法继承样式上的按钮颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33462139/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com