使用基本活动在Android工作室中渲染错误

时间:2017-06-17 20:07:12

标签: android xml android-layout android-studio

我刚刚更新了android studio(它已经过期了),但是当我创建一个新的标准基本活动(使用内置模板)时,我得到一个渲染错误,说#34;渲染期间出现异常:android。 support.design.widget.CoordinatorLayout无法强制转换为android.view.ViewGroup"

我很困惑,因为它只是由android studio自动生成的代码。

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout 
xmlns:android="http://schemas.android.com/apk/res/android"




 xmlns:app="http://schemas.android.com/apk/com.mattdevelopment01.mateusz.homeworkhelper"
         xmlns:app2="http://schemas.android.com/apk/res-auto"
        xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.mattdevelopment01.mateusz.homeworkhelper.Assignments">

<android.support.design.widget.AppBarLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:theme="@style/AppTheme.AppBarOverlay">

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

</android.support.design.widget.AppBarLayout>

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

<android.support.design.widget.FloatingActionButton
    android:id="@+id/fab"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="bottom|end"
    android:layout_margin="@dimen/fab_margin"
    app2:backgroundTint="@color/colorAccent"
    app:srcCompat="@android:drawable/ic_dialog_email" />

</android.support.design.widget.CoordinatorLayout>

1 个答案:

答案 0 :(得分:0)

第二行[xmlns:app =“http://schemas.android.com/apk/com.mattdevelopment01.mateusz.homeworkhelper”]似乎很可疑。有关xmlns:app使用的正确解释,请检查:What is XML property xmlns:app?

尝试删除我提到的行,并编辑第三行,说xmlns:app2成为 - &gt;的xmlns:应用