哪里可以找到Android UI组件的源代码?
我相信Android框架中的所有源代码都可以在 https://android.googlesource.com 中找到,但我在那里找不到 UI 组件的源代码,例如 android.view.View、小部件等。
有人可以告诉我代码在哪里吗?
I believe that all the source code in the Android framework could be found in https://android.googlesource.com, but I cannot find the source code of the UI components there, e.g., android.view.View, widgets, etc.
Can somebody tell me where the code is?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
检查 https://android.googlesource.com/平台/框架/基/+/master/core/java/android/。有几个子目录用于视图、小部件等。
请参阅 Github 镜像。如果出现问题或不是最新的,您必须下载 Android 源代码 。
Check https://android.googlesource.com/platform/frameworks/base/+/master/core/java/android/. There are a few subdirectories for view, widget and so on.
See the Github mirror. In case this goes down or is not up to date you have to download the Android source.
我发现浏览 Android 代码的最简单方法是 http://google.com/codesearch 。例如尝试输入“android TextView”,您会很快找到它。它还有一个额外的好处,那就是非常快速和高效的搜索。
注意 - 左侧甚至还有“Android”链接,可将您的搜索仅限于 Android。刚刚注意到它;)。
免责声明:我在 Google 的朋友 Miguel 开发了其中的大部分;)。
The easiest way I found to browse android code is http://google.com/codesearch . Try put "android TextView" for example and you will find it very quickly. It has the added benefit of very fast and efficient search.
Note - there is even "Android" link at the left side to limit your searches just to Android. Just noticed it ;).
Disclaimer: My friend from Google, Miguel, developed big part of it ;).