Using Navigationview From Android Design Support Library
I'm trying to follow this tutorial to use the new DrawerLayout from the Design Support Library. It seems that the Android studio isn't recognizing the NavigationView Layout. This i
Solution 1:
My bad!
You should, of course, import the android support design lib to your project.
So the 'dependencies' area in the gradle (app) should look like that:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile'com.android.support:appcompat-v7:22.2.0'compile'com.android.support:design:22.2.0'
}
Post a Comment for "Using Navigationview From Android Design Support Library"