1.遠程Service(AIDL方式)
ServiceConActivity
ServiceSamples
這是簡單的service & activity交互的代碼。
在看關(guān)鍵的AIDL代碼:
// ISamplesAidlInterface.aidlpackage com.joyfulmath.samples.basecontrol;import com.joyfulmath.samples.basecontrol.PersonCall;import com.joyfulmath.samples.basecontrol.ICallBack;// Declare any non-default types here with import statementsinterface ISamplesAidlInterface { int doBackground(in String action); void findPerson(in PersonCall p); void registerCallBack(ICallBack cb); void unRegisterCallBack(ICallBack cb); }
網(wǎng)友評論