Android Studio @style/Widget.Material3.Button导致呈现问题

mpgws1up  于 2022-11-16  发布在  Android
关注(0)|答案(2)|浏览(161)

当我将样式应用到我的按钮@style/Widget.Material3.Button时,它会使整个布局设计消失,布局不再可见。
下面是我的XML代码。

<Button
    style="@style/Widget.Material3.Button"
    android:id="@+id/button"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginStart="60dp"
    android:layout_marginTop="16dp"
    android:layout_marginEnd="60dp"
    android:text="Text"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/textField" />

有什么解决方案可以解决这个渲染问题吗?

zz2j4svz

zz2j4svz1#

对于“材料”型式,您需要使用“材料”元件。com.google.android.material.button.MaterialButton

utugiqy6

utugiqy62#

转到主题并将样式的父元素更改为:

相关问题