按钮未显示正确的颜色 - Android Studio
Button Doesn't Show Correct Color - Android Studio
在我的 Android Studio 应用程序中,我有一个按钮,我为其设置了一个可绘制对象作为背景。 drawable 圆角并改变按钮的颜色。
但是,当我查看 activity 的结果设计时,我想要的颜色没有显示出来。相反,该按钮采用 colorPrimary(橙色,#ED3616)。当我 运行 应用程序时,也会发生同样的情况。
注意:可绘制文件的其他属性可以完美地转换为按钮(即圆角)。问题仅在于颜色。
我试过使用 MaterialButton,并使用 android:backgroundTint 设置颜色。然后,颜色确实按照我的意愿显示,但设计看起来很奇怪(按钮内部有一个不同颜色的矩形(Picture of MaterialButton if you'd like to see it)
如何使常规按钮具有我想要的颜色?
按钮:
<Button
android:background="@drawable/round2"
android:id="@+id/signIn"
android:layout_width="256dp"
android:layout_height="66dp"
android:text="@string/logIn"
android:textColor="#FFFFFF"
android:textSize="25sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.496"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.878" />
可绘制:round2.xml:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid
android:color="#B30C44"
android:paddingLeft="6dp"
android:paddingTop="6dp" />
<corners
android:bottomRightRadius="20dp"
android:bottomLeftRadius="20dp"
android:topLeftRadius="20dp"
android:topRightRadius="20dp"/>
<padding
android:bottom="6dp"
android:left="6dp"
android:right="6dp"
android:top="6dp" />
</shape>
显示内容:
What the Button looks like
这是因为 MaterialButton
的默认样式(如果您使用的是 MaterialComponents
主题,Button
会自动替换为 MaterialButton
) 与 colorPrimary
.
你必须使用:
<Button
android:background="@drawable/round2"
app:backgroundTint="@null"
... />
在我的 Android Studio 应用程序中,我有一个按钮,我为其设置了一个可绘制对象作为背景。 drawable 圆角并改变按钮的颜色。 但是,当我查看 activity 的结果设计时,我想要的颜色没有显示出来。相反,该按钮采用 colorPrimary(橙色,#ED3616)。当我 运行 应用程序时,也会发生同样的情况。 注意:可绘制文件的其他属性可以完美地转换为按钮(即圆角)。问题仅在于颜色。
我试过使用 MaterialButton,并使用 android:backgroundTint 设置颜色。然后,颜色确实按照我的意愿显示,但设计看起来很奇怪(按钮内部有一个不同颜色的矩形(Picture of MaterialButton if you'd like to see it)
如何使常规按钮具有我想要的颜色?
按钮:
<Button
android:background="@drawable/round2"
android:id="@+id/signIn"
android:layout_width="256dp"
android:layout_height="66dp"
android:text="@string/logIn"
android:textColor="#FFFFFF"
android:textSize="25sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.496"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.878" />
可绘制:round2.xml:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid
android:color="#B30C44"
android:paddingLeft="6dp"
android:paddingTop="6dp" />
<corners
android:bottomRightRadius="20dp"
android:bottomLeftRadius="20dp"
android:topLeftRadius="20dp"
android:topRightRadius="20dp"/>
<padding
android:bottom="6dp"
android:left="6dp"
android:right="6dp"
android:top="6dp" />
</shape>
显示内容: What the Button looks like
这是因为 MaterialButton
的默认样式(如果您使用的是 MaterialComponents
主题,Button
会自动替换为 MaterialButton
)colorPrimary
.
你必须使用:
<Button
android:background="@drawable/round2"
app:backgroundTint="@null"
... />