如何获取android的native方法源码

发布于 2024-11-03 08:25:03 字数 50 浏览 1 评论 0 原文

是否可以获取并观看Android程序组件的本机方法代码。如果有人知道如何做,请告诉我。

Is it possible to get and watch at Android's program component's native methods code. If anyone knows how to, please let me know.

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

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

发布评论

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

评论(4

下雨或天晴 2024-11-10 08:25:03

您可以使用 Google 代码搜索查找 Android 原生方法的源代码 以下服务之一:

搜索“SystemClock || android*SystemClock" 会将您指向 android_os_SystemClock.cpp 文件,其中turn 将其许多方法转发到 SystemClock.cpp

其他具有本机方法实现的 Android .cpp.h 文件可以通过类似的方式找到。

You can find source code for Android native methods using Google Code Search one of the following services:

The search for "SystemClock || android*SystemClock" in AndroidXref will point you to the android_os_SystemClock.cpp file which in turn forwards many of its methods to SystemClock.cpp

Other Android .cpp or .h files with native methods implementations could be found in a similar way.

↙厌世 2024-11-10 08:25:03

如果您正在寻找 Android SDK 代码,那么您可以在这里找到它:
https://android.googlesource.com

If you are looking for android SDK code then you can find it here:
https://android.googlesource.com

樱娆 2024-11-10 08:25:03

https://android.googlesource.com

git clone https://android.googlesource.com/platform/frameworks/base

对于 Google 应用程序,请查看 platform/packages/apps/[APP名称]

https://android.googlesource.com

git clone https://android.googlesource.com/platform/frameworks/base

For Google application look at platform/packages/apps/[APP name]

命硬 2024-11-10 08:25:03

除了 Android 开源项目 之外,您只需使用 google 即可找到代码,例如搜索:

android SystemClock source code

I got links to grep 代码(系统时钟)。我发现在这里浏览代码更舒服(请注意您正在浏览的代码版本)。

Beside the Android Open Source Project you can find the code just by using google, e.g. search for:

android SystemClock source code

I got links to grepcode (SystemClock). I find it more compfortable to browse the code here (be careful which version of code you are browsing).

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