在Eclipse中开发android的应用程序时,有时想查看函数的内部实现,但是当在函数上点击ctrl和鼠标左键的时候,

往往出现如下提示:

Class File Editor

Source not found

The JAR of this class file belongs to container 'Android' which does not allow modifications to source attachments on its entries.

因此按照如下操作添加对应的源代码:

选择workspace 里面的项目,点击右键--->Build Path-->configure build path -->liberaries-->选择一个jar包--->点击左侧的展开三角按钮--->

展开后选择Source attachment --->点击右侧的 Edit 按钮--->弹出对话框,并选择External File---->找到指定的源文件压缩包。或者可使用外部源文件目录。点击OK。

进去以后发现还是不能查看,同样的提示!

仔细读英文的后半部分,在libs中直接引用的第三方jar包不让其做任何修改。包括添加源文件参看。

因此在android工程下新建一个lib目录,将jar包从libs转移到lib中。然后重复以上过程。

结果就可以查看了!不过一运行你的程序,马上报错无法找到class的错误。 = =! 死胡同了~

看来只能将第三方jar放到libs了。

有的牛人这样解决了:

In order to link thesources and javadocto a .jar library that is automatically linked by Eclipse you have to do the following.

  1. Place all three .jar files in the libs folder.
  2. Create.propertiesfile in the libs folder with the name of the library .jar (see example).
  3. Specify the relative paths to the sources and javadoc .jar in the .properties file.
  4. Closeand re-open the Eclipse project! Optionally refresh the project.
  5. Select an object of the linked library in the source code.
  6. Open the Javadoc view in Eclipse to check the documentation (see screenshot).
  7. Open the source code declaration (default shortcut:F3) of the selected object.

Example:GSON library

/libs/gson-2.2.2.jar /libs/gson-2.2.2.jar.properties /libs/gson-2.2.2-javadoc.jar /libs/gson-2.2.2-sources.jar

Contents of gson-2.2.2.jar.properties

src=gson-2.2.2-sources.jar doc=gson-2.2.2-javadoc.jar

You can of course move the javadoc and sources .jar into other folders and specify relative paths. That's up to you.

但是遗憾的是,弄了半天都没能解决。可能也跟我用的第三方的jar包不规范的原因,而且我没有doc文件。


最终,我想到了一个解决办法:

新建一个lib目录

将需要的jar包全部拷贝到该目录下

依次对每个jar包执行 上面绿色 部分操作

完成后右键lib目录,点击build path--> use as source folder

即可解决查看源码的问题,也可使程序正常执行。






更多相关文章

  1. Android中ExpandableListView的使用
  2. Android(安卓)APP —— “时光摄影” 的搭建手记(一)
  3. android添加WMS图层
  4. android背景选择器selector用法汇总
  5. android textview 自动链接网址 修改默认点击事件
  6. android 环境配置
  7. Android开发环境的搭建步骤
  8. 一、android四种点击方式实现
  9. Android开发环境的搭建步骤

随机推荐

  1. 中断时间序列分析ITSA是什么? 很流行的政
  2. 趁火打劫!印度APT组织对我国医疗机构发起
  3. 用PowerShell通过Posh-SSH免密码自动登录
  4. 倡议: 你来推荐文献, 我来帮你解读, 让计
  5. 自动驾驶思考:硬件篇
  6. 推荐系统:石器与青铜时代
  7. 回放:如何构建高效能的地图定位系统
  8. 自动驾驶思考:基础架构篇
  9. 闭包函数及其应用
  10. php实现多文件上传和mvc基础