Cannot resolve symbol DrawerLayout

若如初见. 提交于 2019-12-04 00:11:07
Jaydipsinh Zala

May be you have found your answer but i think its for those who still wants to know. so, here's my answer,

For Android Studio:

First of all you need to add External Jar

  • In android studio go to File-> Project Structure -> Modules -> Dependencies -> + symbol -> Library Dependency.
  • Now search for support library. you will find something like this com.android.support:support-v13
  • Now, select Jar file named support-v13 (Whatever the version is) and click OK.

Now, you will see, no more errors like this.

For Eclipse:

Refer this link, Click here

You need to make sure you are using the latest support library as the DrawerLayout and other items were added in the May 2013 release.

  • Added DrawerLayout for creating a Navigation Drawer that can be
    pulled in from the edge of a window.

You need to reference the support library in your project dependencies. Import the jar package into your java build path using the Project/Properties/Java Build Path/Libraries tab and use the button 'Add External JARs....'

Now compile the project.

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