原因:intent.component = ComponentName(“com.example.aidltest.service”, com.example.aidltest.service.MyService),ComponentName()中第一个参数为包名,但是我写成MyService类所在的路径了,所以一直绑定不了服务。
应改为intent.component = ComponentName(“com.example.aidltest”, com.example.aidltest.service.MyService)