Android 活页夹示例
我正在寻找 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 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!
我能够编译本机应用程序并在 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.