Android 活页夹示例

发布于 2024-09-16 05:43:18 字数 272 浏览 5 评论 0原文

我正在寻找 C/C++ 中的简单绑定程序 IPC 示例。最近我开始阅读有关 Android Binder 基础知识 (http://bharathi.posterous.com/android-binder< /a>) 并浏览了 Android 源代码中的代码。大部分binder使用部分是用C++编写的。有人能解释一下为什么使用C++而不是C吗?

I am looking for simple binder IPC example in C/C++. Recently I started reading about the Android Binder basic (http://bharathi.posterous.com/android-binder) and gone thru the code in Android source also. Most of the binder usage part is in C++. Can some one explain why C++ is used instead of C?

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

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

发布评论

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

评论(2

刘备忘录 2024-09-23 05:43:19

查看 http://github.com/mcr/Android-HelloWorldService (如果您使用更高版本对于 android,您可能需要将一些包含从 #include 交换为 #include)。

您还可以下载android源代码并查看frameworks/base/camera/tests/CameraServiceTest/CameraServiceTest.cpp

干杯!

Check out http://github.com/mcr/Android-HelloWorldService (if you use later versions of android you may have to exchange some includes from #include <utils/something> to #include <binder/something>).

You can also download the android source code and look into frameworks/base/camera/tests/CameraServiceTest/CameraServiceTest.cpp

Cheers!

残花月 2024-09-23 05:43:19

我能够编译本机应用程序并在 Android 2.3 源代码上运行。为此,我必须进行两项更改 - 第一个是将绑定器包含文件的路径从 更改为 ,第二个是将 libbinder 包含在 libhelloworldservice makefile 中。

感谢您提供这个简单的示例来说明活页夹的使用。

I was able to get the native application compile and working on Android 2.3 source code. For this I had to make two changes - 1st is change the path of binder include files from to and secondly to include the libbinder in the libhelloworldservice makefile.

Thanks for this simple example illustrating binder use.

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