android Studio 中的按钮颜色没有改变

时间:2021-07-28 16:35:25

标签: java android android-studio kotlin android-layout

所以我只是在android studio中进入属性来改变按钮的颜色,就像我改变按钮的名称和其他属性一样。但是现在我在手机上编译运行时颜色好像没有生效。 我只能在更改主题视图时看到颜色变化,但是当我编译并发送到手机时我看不到它。

<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"  
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">


<Button
            android:id="@+id/btn_answer2"
            android:layout_width="wrap_content"
            android:layout_height="200dp"
            android:layout_weight="1"
            android:background="#FA39D328"
            android:backgroundTint="#E10A0A"
            android:text="Button" />

This is the only options i have with theme, I can see the the color only on different themes but they do not show up when I run the app. Before changing attributes would change the color

This is the attributes change

2 个答案:

答案 0 :(得分:0)

删除 android:background="#FA39D328",只使用 android:backgroundTint="#E10A0A"。

<Button
            android:id="@+id/btn_answer2"
            android:layout_width="wrap_content"
            android:layout_height="200dp"
            android:layout_weight="1"
            android:backgroundTint="#E10A0A"
            android:text="Button" />

答案 1 :(得分:0)

使用 AppCompatButton


    <androidx.appcompat.widget.AppCompatButton
        android:id="@+id/click"
        android:background="#FA39D328"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/pay_now"
        app:layout_constraintBottom_toBottomOf="parent" />