AIDL 包裹使用

发布于 2024-12-08 00:10:26 字数 198 浏览 0 评论 0原文

我已经阅读了有关 Parcels 和 AIDL 的 Android 开发者网站,但我仍然有一个问题。为什么 Parcelable 对象可以从 AIDL 接口方法返回,但不能作为参数传递到 AIDL 方法中?我知道 AIDL 接口方法需要原始数据类型(如 android 开发者网站所述),但我能够将 Uri 对象作为参数传递 - 那么为什么我不能传递 Parcelable 对象呢?

I've read Android Developer sites about Parcels and AIDL but I still have a question. Why can a Parcelable object be returned from an AIDL interface method but not passed as a parameter into an AIDL method? I know that AIDL interface methods want primitive data types (as stated by the android developer website) but I am able to pass a Uri object in as a parameter - so why can I not pass a Parcelable object in?

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

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

发布评论

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

评论(1

独自←快乐 2024-12-15 00:10:26

您可以使用 AIDL 传递可分割对象。文档说“如果您想通过 IPC 接口将一个类从一个进程发送到另一个进程,您可以这样做。但是,您必须确保您的类的代码可用于 IPC 的另一端通道和您的类必须支持 Parcelable 接口。”

http://developer.android.com/guide/components/aidl.html#PassingObjects

You can pass parcelable objects using AIDL. The docs say "If you have a class that you would like to send from one process to another through an IPC interface, you can do that. However, you must ensure that the code for your class is available to the other side of the IPC channel and your class must support the Parcelable interface."

http://developer.android.com/guide/components/aidl.html#PassingObjects

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