Cannot resolve symbol 'NavigationView'

五迷三道 提交于 2019-12-04 02:12:21

It sounds like you do not have the library included as a Gradle dependency.

Add the following to your build.gradle:

dependencies {
    compile 'com.android.support:design:22.2.1'
}

The error message "Could not find com.android.support:design:22.2.1." means that you likely do not have the latest version of the Android Support Repository installed. Open up your SDK Manager and ensure that the "Android Support Library" and "Android Support Repository" items under "Extras" are up to date.

For those who are looking for BottomNavigationView and entered this question, you need to have the design packages greater than 25

dependencies {
    compile 'com.android.support:design:25.0.0'
}

If you're using AndroidX, Use:

implementation 'com.google.android.material:material:1.0.0'

And in you're layout resource file:

<com.google.android.material.navigation.NavigationView
...
...
/>
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!