当我使用<NavigationView />
的{{1}}标记时,屏幕右上角会显示该行:
“找不到以下类:-android.support.design.widget.NavigationView”
那么我该如何解决这个问题?
答案 0 :(得分:1)
你的Gradle中应该有设计库。
compile 'com.android.support:design:25.3.1'
如果您已经清理并重建项目。
您应该将NavigationView放在DrawerLayout中。不要放在Framelayout内。
你的代码应该是这样的。
<?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">
<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_main"
app:menu="@menu/activity_main_drawer" />
</android.support.v4.widget.DrawerLayout>
仍然没效果?重启你的工作室。
答案 1 :(得分:0)
尝试同步您的Gradle文件
转到 档案 - &gt;使用Gradle文件同步项目
我有同样的错误,并且我修复了它
答案 2 :(得分:-1)
确保您已在应用级别build.gradle中添加以下行。
compile 'com.android.support:design:26.+'
根据你的tarketSdkVersion改变'26。+'。