我在布局中定义了一个 MaterialButton
<com.google.android.material.button.MaterialButton
android:id="@+id/button"
style="@style/Widget.MaterialComponents.Button.OutlinedButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:text="@string/close" />
在某些情况下,我必须将其样式更改为默认按钮: style="@style/Widget.MaterialComponents.Button"
但是如何以编程方式进行呢?奇怪的是,我没有发现可以将默认按钮转换为动态轮廓,反之亦然
谢谢你的帮助