gpt4 book ai didi

android - setTextAppearance - 尝试禁用点击时不适用于 MaterialButton

转载 作者:行者123 更新时间:2023-11-29 22:45:21 29 4
gpt4 key购买 nike

安卓6.0

安卓工作室 3.6

在我的 fragment 中,当单击按钮时,我会像这样“即时”更改样式:

  bluetoothPageViewModel.isDisableModeLiveData().observe(this, Observer {
dataBinding.buttonStartSearchBluetooth.setTextAppearance(
R.style.buttonDisableStyle
);
})

这里的xml布局:

 <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" />

这里是 styles.xml

<style name="buttonDisableStyle" parent="@style/Widget.MaterialComponents.Button">
<item name="android:textColor">@color/default_button_textColor</item>
<item name="backgroundTint">@color/button_bg_color</item>
<item name="android:enabled">false</item>
<item name="android:clickable">false</item>
<item name="android:textAppearance">@style/byttonTexAppearanceStyle</item>
</style>

<style name="byttonTexAppearanceStyle" parent="@style/TextAppearance.MaterialComponents.Button">
<item name="android:textSize">18sp</item>
<item name="android:textAllCaps">true</item>
</style>

但是在调用 setTextAppearance 之后我仍然可以点击按钮。为什么?

最佳答案

setTextAppearance 只关心 View 文本的样式。检查official doc查看受 setTextAppearance 影响的支持属性。

您必须手动处理其他属性,检查以下内容:

bluetoothPageViewModel.isDisableModeLiveData().observe(this, Observer {
dataBinding.buttonStartSearchBluetooth.setTextAppearance(
R.style.byttonTexAppearanceStyle
);

dataBinding.buttonStartSearchBluetooth.setEnabled(false);
dataBinding.buttonStartSearchBluetooth.setClickable(false);
dataBinding.buttonStartSearchBluetooth.setBackgroundTintList(
ContextCompat.getColorStateList(this, R.color.button_bg_color))
);
})

<style name="byttonTexAppearanceStyle" parent="@style/TextAppearance.MaterialComponents.Button">
<item name="android:textSize">18sp</item>
<item name="android:textAllCaps">true</item>
<item name="android:textColor">@color/default_button_textColor</item>
</style>

关于android - setTextAppearance - 尝试禁用点击时不适用于 MaterialButton,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58589889/

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