Android Binder 生成器失败

发布于 2024-12-13 15:01:34 字数 1084 浏览 0 评论 0原文

我已经用我的界面定义了一个 AIDL 文件。像这样的事情:

interface IResPlugin {
    int discoverType();
    Map onClick( in int id, in Map state );
    int getLayoutId(in int option);
    int getMeasures();
    String getName();
}

Eclipse 自动在 gen 文件夹中生成 IResplugin.java,但它做错了。这是 Eclipse 生成的代码:

public java.util.Map onClick(int id, java.util.Map state) throws android.os.RemoteException
{
    android.os.Parcel _data = android.os.Parcel.obtain();
    android.os.Parcel _reply = android.os.Parcel.obtain();
    java.util.Map _result;
    try {
        _data.writeInterfaceToken(DESCRIPTOR);
        _data.writeInt(id);
        _data.writeMap(state);
        mRemote.transact(Stub.TRANSACTION_onClick, _data, _reply, 0);
        _reply.readException();
        _result = _reply.readHashMap(cl);
    }
    finally {
        _reply.recycle();
        _data.recycle();
    }
    return _result;
}

_result = _replu.readHashMap(cl) 行崩溃,因为 cl 对象不存在。如果我手动添加这一行(缺少类加载器),Eclipse 会将我的版本替换为自己生成的版本(同样是错误的)。

有什么想法吗?

I have defined an AIDL file with my interface. Something like this:

interface IResPlugin {
    int discoverType();
    Map onClick( in int id, in Map state );
    int getLayoutId(in int option);
    int getMeasures();
    String getName();
}

Automatically, Eclipse generates the IResplugin.java in gen folder, but it does it wrong. This is the code Eclipse generates:

public java.util.Map onClick(int id, java.util.Map state) throws android.os.RemoteException
{
    android.os.Parcel _data = android.os.Parcel.obtain();
    android.os.Parcel _reply = android.os.Parcel.obtain();
    java.util.Map _result;
    try {
        _data.writeInterfaceToken(DESCRIPTOR);
        _data.writeInt(id);
        _data.writeMap(state);
        mRemote.transact(Stub.TRANSACTION_onClick, _data, _reply, 0);
        _reply.readException();
        _result = _reply.readHashMap(cl);
    }
    finally {
        _reply.recycle();
        _data.recycle();
    }
    return _result;
}

The line _result = _replu.readHashMap(cl) crashes because the cl object doesn't exist. If I add this line manually (a classloader is missing), Eclipse replaces my version for a generated one by itself (and again, wrong).

Any ideas?

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

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

发布评论

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

评论(1

音盲 2024-12-20 15:01:34

它看起来像是一个辅助错误,值得在错误跟踪器中提交一个错误。

作为解决方法,您可以使用 Bundle 而不是 Map。

或者您可以采取的另一种方法是实现您自己的包含 Map<> 的 Parcelable 类。相反,并将其用作返回类型。

It looks like a bug an aidl, that would be worth filing a bug in the bug tracker for.

As a work-around, you could use Bundle instead of Map.

Or another approach you could take is to implement your own Parcelable class that contains the Map<> instead, and use that as the return type.

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