iImoocAidl报空指针异常,服务端MainActivity里面什么都不用写吗
使用这种方式绑定服务
intent.setAction("");
bindService(intent, conn, Context.BIND_AUTO_CREATE);
这是什么意思啊
<service android:name=".AIDL"
android:enabled="true"
android:exported="true"></service>
注册Service
android5.0以下的版本用隐式Intent启动service,就不会报空了
<service
android:name="com.example.android_aidl.IRemoteService"
android:process=":remote"
android:exported="true" >
<intent-filter>
<action android:name="com.example.android_aidl.IRemoteService"></action>
</intent-filter>
</service>
你的服务启动了吗?