如何轻松找到Android类的源代码

发布于 2024-08-16 19:58:22 字数 304 浏览 5 评论 0原文

我知道我可以从 https://android.googlesource.com 访问 android 源代码,但很难选择如果我只知道包和 android 类的名称,则正确的 git 存储库。

没有办法在 https://android.googlesource.com 中查找文件吗?

I know I can access android source code from https://android.googlesource.com, but it's hard to select the right git repo if I only know the package and the name of an android class.

Isn't there a way to locate a file in https://android.googlesource.com?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

妄想挽回 2024-08-23 19:58:23

自 2011 年起,可以使用 SDK 管理器下载源代码(窗口 > Android SDK 管理器)

  • 安装包“Sources for Android SDK”
  • 打开 android.jar 的属性,您可以在 Android 库下方的包资源管理器中找到
  • “Java” Source Attachment”,选择 android/sdk/sources 作为外部文件夹

编辑: Eclipse 似乎会定期扫描外部文件夹以获取更新。如果这让您烦恼,您可以将该文件夹压缩到 .jar 中,然后告诉 Eclipse 在该 jar 中查找源代码。然后 Eclipse 将不再扫描更改。

Since 2011 the source code can be downloaded with the SDK Manager (Window > Android SDK Manager)

  • Install package "Sources for Android SDK"
  • Open Properties of android.jar, which you can find in the package explorer below the Android library
  • In "Java Source Attachment", select android/sdk/sources as external folder

Edit: Eclipse seems to regularly scan the external folder for updates. If this annoys you, you can zip the folder into a .jar and then tell Eclipse to look in that jar for the sources. Eclipse will then no longer scan for changes.

转身泪倾城 2024-08-23 19:58:23

对于单个 针对 Android 项目提出的问题 code>.jar 包含 Java 源代码的文件。

该问题已被拒绝,但评论是在 Eclipse 中访问源代码的良好方法来源。

There is an issue raised against Android project for a single .jar file containing the Java sources.

The issue has been declined but the comments are a good source of methods to access the source in Eclipse.

酒中人 2024-08-23 19:58:23

另外,这是一个关于如何获取源代码的非常好的教程在 Eclipse 中,无需搞乱任何存储库或其他任何内容,它包含源代码的 zip 文件(可能已过时)

also, this is a very good tutorial on how to get the source in eclipse, without having to mess with any of the repos or anything, it includes zip files of the the source (which might be out of date)

追风人 2024-08-23 19:58:23

您可以通过 https://cs.android.com 轻松搜索任何 Android 类。

You can search for any Android class through https://cs.android.com easily.

海拔太高太耀眼 2024-08-23 19:58:22

您想要查看的大多数内容都可以在 frameworks/base 仓库。
这几乎包括构成 Android Java 框架的所有公共和私有 API 类。

如果您希望能够从 Eclipse 中浏览源代码,可以遵循以下指南:http://blog.michael-forster.de/2008/12/view-android-source-code-in-eclipse.html

最后,Android SDK 参考搜索扩展可让您通过以下方式浏览公共 API:在 URL 栏中输入 ad,它会向每个 Javadoc 页面添加一个方便的“查看源代码”链接。

Most things you'll want to see can be found under the frameworks/base repo.
This includes pretty much all the public and private API classes that make up the Android Java framework.

If you want to be able to browse the source from within Eclipse, you can follow this guide: http://blog.michael-forster.de/2008/12/view-android-source-code-in-eclipse.html

Finally, the Android SDK Reference Search extension for Chrome lets you browse the public API by typing ad into the URL bar, and it adds a convenient "view source" link to each Javadoc page.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文