无法解决NavigationView的Error inflating类

时间:2016-09-20 09:22:51

标签: android android-layout android-navigationview

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    tools:openDrawer="start">
<include
layout="@layout/app_bar_main"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:menu="@menu/activity_main_drawer"/>
</android.support.v4.widget.DrawerLayout>

应用程序在编译时崩溃,崩溃报告

  

java.lang.RuntimeException无法启动活动ComponentInfo,android.view.InflateException:二进制XML文件行#17:错误膨胀类android.support.design.widget.NavigationView

我受到了打击,请提出解决问题的想法。

由于

1 个答案:

答案 0 :(得分:0)

您必须将支持库添加到项目中。

  1. v7支持
  2. v4 Suport
  3. V13支持
  4. 设计支持库
  5. 编辑 - 我使用了以下代码片段,它对我有用。 即          

    <include
        layout="@layout/app_bar_drawer_sample"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
    
    <android.support.design.widget.NavigationView
        android:id="@+id/nav_view"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:fitsSystemWindows="true"
        app:headerLayout="@layout/nav_header_drawer_sample"
        app:menu="@menu/activity_drawer_sample_drawer" />
    
    </android.support.v4.widget.DrawerLayout>
    

    如果不能解决,请创建一个新的NavigationDrawer活动。按照以下步骤

    右键单击活动包&gt;新&gt;活性GT; NavigationDrawer活动。它会生成一个合适的代码。然后你就可以继续工作了。