六月

13

Android Interface Description Language (aidl)

Android Interface Description Language (aidl) Android接口描述语言:它用来生成进程间接口代码。例如,在一个服务中可能就会用到。 使用AIDL(AndRoid接口描述语言)设计和使用远程接口 Since each application runs in its own process, and you can write a service that runs in a different process from your Application’s UI, sometimes you need to pass objects between processes. On the Android platform, one process can not normally access the memory of another process. So [...]