Android Binder 生成器失败
我已经用我的界面定义了一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它看起来像是一个辅助错误,值得在错误跟踪器中提交一个错误。
作为解决方法,您可以使用 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.