无法以编程方式更改backgroundTint

时间:2019-10-27 15:22:12

标签: android android-button android-styles material-components material-components-android

Android Studio 3.6

以我的风格。 xml

my_radio_button.get_active(); \n

在xml布局中:

 <style name="buttonStyle">
        <item name="android:textColor">@color/default_button_textColor</item>
        <item name="android:backgroundTint">@color/button_bg_color</item>
        <item name="android:textSize">18sp</item>
        <item name="android:textAllCaps">true</item>
    </style>

    <style name="buttonClickStyle">
        <item name="android:textColor">@color/button_bg_color</item>
        <item name="android:backgroundTint">@color/button_click_bg_color</item>
        <item name="android:textSize">18sp</item>
        <item name="android:textAllCaps">true</item>
    </style>

点击按钮时,我尝试更改样式:

 <com.google.android.material.button.MaterialButton
            android:id="@+id/buttonStartSearchBluetooth"
            style="@style/buttonStyle"
            android:layout_width="0dp"
            android:layout_height="@dimen/button_height"
            android:layout_margin="@dimen/button_margin"
            android:onClick="onClickButtonStartSearch"
            android:text="@string/start_search"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent" />

但是它仅更改文本颜色。不变dataBinding.buttonStartSearchBluetooth.setTextAppearance(R.style.buttonClickStyle)

为什么?

3 个答案:

答案 0 :(得分:1)

尝试此代码

yourbutton.setBackgroundTintList(contextInstance.getResources().getColorStateList(R.color.your_xml_name));

答案 1 :(得分:1)

您的风格存在一些问题。

  • 使用MaterialComponents.Button.* style作为父母
  • 使用backgroundTint代替android:backgroundTint
  • 使用android:textAppearance定义您的文字样式

类似的东西:

<style name="buttonStyle" parent="@style/Widget.MaterialComponents.Button">
  <item name="android:textColor">@color/default_button_textColor</item>
  <item name="backgroundTint">@color/my_selector</item>
  <item name="android:textAppearance">@style/my_textAppearance</item>
</style>
<style name="my_textAppearance" parent="@style/TextAppearance.MaterialComponents.Button">
    <item name="android:textSize">18sp</item>
    <item name="android:textAllCaps">true</item>
</style>

最后以编程方式更改文本颜色和背景颜色,使用:

  • 用于更改背景颜色选择器的方法setBackgroundTintList
  • setTextColor更改文本颜色的方法

类似的东西:

    button.setBackgroundTintList(ContextCompat.getColorStateList(this,R.color.button_selector));
    button.setTextColor(ContextCompat.getColor(this, R.color....));

答案 2 :(得分:0)

setTextAppearance仅关心样式TextView的文本而不是背景的样式。检查official doc,查看受setTextAppearance影响的受支持属性。