如何修复布局“ activity_main.xml”文件中的“不允许元素....”错误

时间:2019-10-08 09:57:30

标签: android-studio-3.5.1

我使用“基本活动”模板使用Android Studio 3.5.1创建了一个新的android项目。但是无法获得“设计/文本”选项卡,而是错误消息“此处不允许元素...”。

这些元素以红色突出显示。感谢您的帮助。

    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <com.google.android.material.appbar.AppBarLayout
        android:layout_height="wrap_content"
        android:layout_width="match_parent"
        android:theme="@style/AppTheme.AppBarOverlay">

        <androidx.appcompat.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:popupTheme="@style/AppTheme.PopupOverlay" />

    </com.google.android.material.appbar.AppBarLayout>

    <include layout="@layout/content_main"/>

    <com.google.android.material.floatingactionbutton.FloatingActionButton

1 个答案:

答案 0 :(得分:0)

我通过以下方式解决了该问题:  1-删除... C:\ Users [myUserAcctName] .gradle下的“包装器”文件夹  2-重新加载项目,让Gradle同步完成(花费了34分钟)。 然后变得完美。 感谢您考虑的答案。