InterfaceLoader
InterfaceLoader copied to clipboard
史上最好用的Android跨进程接口调用框架
 新建了一个自定义类型,实现了Parcelable接口 public interface ILoaderDemo { int plus(int a, int b); int minus(user user); int multi(int a, int b); } 接口修改成自定义类型后LoaderDemoService就会报找不到 user classnotfound异常。  本人测试把InterfaceService里的获取参数方法里ClassLoader获取换成传递进来implement后运行就正常了。
你好,请问一下该库实际能解决那些问题,方便展开讲讲吗?
目前的ILoaderDemo 是直接返回结果,是否可以尝试通过接口返回?