参考:慕课网 --- 最后三集、Android开发艺术探索

1.在AS中创建aidl文件后,要编译一下才会在gen下生成debug文件:

Android进阶AIDL - 2018年4月14日-LMLPHP

2.AIDL 不支持short类型,常用的数据类型;

Android进阶AIDL - 2018年4月14日-LMLPHP

3.AIDL 中显示启动 Service

Intent intent = new Intent();
intent.setComponent(new ComponentName("com.art.exploration.Chapter2.aidl", "com.art.exploration.Chapter2.aidl.ISumService"));
bindService(intent, conn, BIND_AUTO_CREATE);

4.AIDL本质:

Android进阶AIDL - 2018年4月14日-LMLPHP

05-12 09:36