升级到Electric Eel后,如何解决Android Studio中的预览显示问题?

gzjq41n4  于 2023-01-31  发布在  Android
关注(0)|答案(1)|浏览(531)
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".fragments.MainFragment">

    <com.google.android.material.card.MaterialCardView
        android:layout_width="match_parent"
        android:layout_height="match_parent">

    </com.google.android.material.card.MaterialCardView>

</androidx.constraintlayout.widget.ConstraintLayout>

预览将如下所示:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".fragments.MainFragment">

</androidx.constraintlayout.widget.ConstraintLayout>

预览将如下所示:

我将Android Studio升级到了Electric Eel,现在在XML中,预览经常无法像第一张图片那样正常显示。为什么会出现这种情况?我该如何解决?这个问题只在我升级Android Studio后出现。

v8wbuo2f

v8wbuo2f1#

我把材料设计库从1. 8. 0降级到1. 7. 0,问题就消失了。我想问题出在新版本的材料设计上。

相关问题