课程
/移动开发
/Android
/AIDL-小白成长记
iImoocAidl报空指针异常,服务端MainActivity里面什么都不用写吗
2016-02-25
源自:AIDL-小白成长记 2-2
正在回答
使用这种方式绑定服务
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>
慕先生0560154
恨自己不能小清新 回复 慕先生0560154
llzll 回复 慕先生0560154
你的服务启动了吗?
果然是酱 提问者
举报
AIDL-小白成长记,想要快速入门,看本次的教程就对了
1 回答空指针异常
4 回答空指针异常
2 回答空指针异常!!!
2 回答空指针异常
2 回答计算时出现空指针异常