所以我只是在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" />
答案 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" />