AIDL with callback

An AILD will callback methods

Please go trough Simple AIDL Communication before reading this.

AIDL will callback will need one more corresponding aidl file, ICallback.aidl, which contains callback methods. You can directly use callback object from server to directly connect with client (reverse communication, from server to client).

Example Application:

Last updated