Error:Execution failed for task ':aidldemoapplication:compileDebugAidl'.
> java.lang.RuntimeException: com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'C:\Users\Administrator\AppData\Local\Android\sdk\build-tools\23.0.3\aidl.exe'' finished
> java.lang.RuntimeException: com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'C:\Users\Administrator\AppData\Local\Android\sdk\build-tools\23.0.3\aidl.exe'' finished
2016-05-10
http://blog.csdn.net/yhaolpz/article/details/51339295 AIDL 传递自定义类型数据 希望对你有帮助。
2016-05-07
http://blog.csdn.net/yhaolpz/article/details/51336753 对远程服务的归纳总结 希望对大家的学习有帮助!
2016-05-07
采用setComponent方式代码如下:intent.setComponent(new ComponentName("com.example.tiang.aidlexample","com.example.tiang.aidlexample.IDownloadService"));或者采用如下方式进行绑定:Intent intent = new Intent(this,IDownloadService.class);bindService(intent,connection, Context.BIND_AUTO_CREATE);
2016-04-17
需要在AndroidManifest配置Service,绑定service时采用setAction不成功的原因有可能是由于android 5.0 service需要显式声明导致。
2016-04-17