0

我使用“基本活动”模板使用 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

4

1 回答 1

0

我已经解决了: 1- 删除 ...C:\Users[myUserAcctName].gradle 下的“wrapper”文件夹 2- 重新加载项目并让 Gradle 的同步完成(花了 34 分钟)。然后就完美了。感谢那些考虑答案的人。

于 2019-10-09T13:08:41.697 回答