问答详情
源自:2-2 AIDL案例(二)

onServiceConnected未回调

Intent intent = new Intent();
intent.setComponent(new ComponentName("com.test.aidl","com.test.aidl.IRemoteService"));
bindService(intent, conn, Context.BIND_AUTO_CREATE);

绑定了服务之后,ServiceConnection的onServiceConnected方法未回调


提问者:qq_期待_fjAHQT 2020-07-10 15:23

个回答

  • weixin_慕函数0150148
    2020-09-23 17:38:15

    看一下包名和接口的路径名是否一样

  • weixin_慕函数0150148
    2020-09-23 17:34:12

    先运行服务端demo