How do I see source or javadocs for a library dependency in an Android package in Eclipse?

最后都变了- 提交于 2019-12-05 12:47:44

this should have been fixed in latest adt version, but in case someone still have this problem like me, here's what i did:

I switched the order of src in .classpath file of my library projects, to this (note that the path="src" must be in the first line)

<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="gen"/>

If you right click on a jar file, you can go to the properties menu. In that there is javadoc location option on the side which allows u to specify the path. Might work for the library project too.

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