Eclipse 没有 java 文档来显示有关类和方法的信息。如何附加那些? +安卓
我是
在 Eclipse Holys 环境下在 Android 上工作。但我的 Eclipse 无法帮助我在编写代码时找到有关类或方法的详细信息。
例如:Toast android.widget.Toast.makeText(Context context, CharSequence text, inturation)
如果我将鼠标悬停在上述语句中的 makeText() 上,则会获取以下
信息:该元素没有附加源代码,并且在附加的 Javadoc 中找不到 Javadoc,
我需要在哪里附加以及附加什么内容?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您已将 ADT 插件安装到 Eclipse,那么您应该确保下载了名为“Android SDK 2.2 文档”的软件包,
API 8,修订版 1” 或其他内容。您是否已阅读官方网站上发布的 Android SDK 的完整安装指南?http://developer.android.com/sdk/installing.html 这就是我正在谈论的。之前也在 SO 上讨论过:Eclipse Android 项目中的 JavaDoc
如果您已完成所有这些,那么 http://www.vogella.de/articles/Eclipse/article.html#classpath_jarjavadoc 很好地解释了如何将源代码和 Javadoc 添加到现有库,以防出现问题。
例如,我的库路径如下:
去检查一下您的外观。通常包括 Javadocs 的位置(SDK 路径/docs/reference/)
如果您还想添加源代码,请参阅:
http://android.opensourceror.org/2010/01/18/android -来源/
&
http://stuffthathappens.com/blog/2008 /11/01/浏览-android-source-in-eclipse/
If you have installed the ADT plugin to Eclipse then you should make sure that you download the package called something along the lines of "Documentation for Android SDK 2.2,
API 8, revision 1" or whatever. Have you gone through the entire installation guide for the Android SDK as posted on the official website? http://developer.android.com/sdk/installing.html this is the one I'm talking about. It's been discussed on SO before as well: JavaDoc in an Eclipse Android Project
If you have done all this, then http://www.vogella.de/articles/Eclipse/article.html#classpath_jarjavadoc does a good job of explaining how to add Sources & Javadocs to existing Libraries in case something went wrong.
For example, this is how my Libraries path looks:
Go check and see how yours looks. Included is the location for the Javadocs normally (SDK Path/docs/reference/)
If you want to add the source code as well, see:
http://android.opensourceror.org/2010/01/18/android-source/
&
http://stuffthathappens.com/blog/2008/11/01/browsing-android-source-in-eclipse/