android问题

来源:互联网 发布:淘宝分销需要授权吗 编辑:程序博客网 时间:2024/06/03 13:25

eclipse 无法关联第三方包的源码,解决方法如下
Since those jars are added dynamically through a classpath container, the devs cannot set the source path and the javadoc through Eclipse UI (container don't allow editing those). To fix this, and to make sure that both paths are picked up not only by the current project, but also by other projects (if the current project is a library project), the value is set by a file sitting next to the jar file. The file is name after the jar file, adding .properties at the end. For instance foo.jar -> foo.jar.properties It can currently contain 2 properties: src: relative or absolute path to the source folder (or archive). doc: relative or absolute path to the javadoc.

/Raiden/libs/gdx.jar
/Raiden/libs/gdx.jar.properties
src=E:\\tools\\android\\libgdx-0.9.8\\sources\\gdx-sources.jar

原创粉丝点击