AIDL中service报空指针:
很可能是intent的隐式调用没有添加action配置文件
<service
android:name=".MusicService"
android:enabled="true"
android:exported="true">
<intent-filter>
<action android:name="com.work.MusicService"></action>
</intent-filter>
</service>