AIDL unable to find the definition of a Parcelable class

荒凉一梦 提交于 2019-11-28 04:18:00

问题


I have the following project structure.

My StockInfo.java is perfectly fine.

StockInfo.java (No error)

package org.yccheok.jstock.engine;

import android.os.Parcel;
import android.os.Parcelable;

public class StockInfo implements Parcelable {
    ...
    ...

StockInfo.aidl (No error)

package org.yccheok.jstock.engine;

parcelable StockInfo;

StockInfoObserver.aidl (Error!)

package org.yccheok.jstock.engine;

interface StockInfoObserver {

    void update(StockInfo stockInfo);
}

AutoCompleteApi.aidl (Error!)

package org.yccheok.jstock.engine;

interface AutoCompleteApi {

    void handle(String string);
    void attachStockInfoObserver(StockInfoObserver stockInfoObserver);
}

However, Eclipse complains in StockInfoObserver.aidl (It does complain AutoCompleteApi.aidl too, as it cannot process StockInfoObserver.aidl),

parameter stockInfo (1) unknown type StockInfo

I tried for an hour, but still not able to find out, why in aidl, StockInfo is not being recognized although I had

  1. Provided StockInfo.aidl
  2. Provided StockInfo.java

Any idea?

Here are the complete errors.

Note, AutoCompleteApi.aidl is very much dependent on StockInfoObserver.aidl. That's why you will see the error.

I share the entire project for your reference purpose : https://www.dropbox.com/s/0k5pe75jolv5mtq/jstock-android.zip


回答1:


According to Android documentation You must include an import statement for each additional type not listed above, even if they are defined in the same package as your interface

Try to add this line to StockInfoObserver.aidl

import org.yccheok.jstock.engine.StockInfo;


来源:https://stackoverflow.com/questions/14263005/aidl-unable-to-find-the-definition-of-a-parcelable-class

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!