0

我正在使用 Eclipse,并且添加了这样的支持设计导航视图

<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:yourApp="http://schemas.android.com/apk/res/com.example.materialdesignexample.MainActivity"
    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" >

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            android:theme="@style/ThemeOverlay.AppCompat.Dark" />
    </RelativeLayout>

    <android.support.design.widget.NavigationView
        android:id="@+id/navigation_view"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        app:headerLayout="@layout/drawer_header"
        app:menu="@menu/drawer" />

</android.support.v4.widget.DrawerLayout>

    </android.support.v4.widget.DrawerLayout>

但我收到这样的错误

错误:在包 com.example.materialdesignexample 中找不到属性 headerLayout 的资源标识符

请帮我.....

4

2 回答 2

0

编辑器代码截图

添加编译'com.android.support:design:25.2.0'

于 2017-04-20T04:46:25.803 回答
0

您必须从 android-sdks\extras\android\support\v7\appcompat 导入 support-v7-appcompat 库。

在eclipse中为设计支持库创建一个android库项目,并将目录android-sdks\extras\android\support\design的内容放在设计支持库项目中链接appcompat-v7库到设计支持库项目从你的链接支持库项目项目。你不能直接使用jar android-support-design.jar 因为你也需要一些资源(这是aar格式的原因)。

于 2015-11-30T06:44:03.317 回答