課程
/移動開發(fā)
/Android
/AIDL-小白成長記
int res = iMyAidlInterface.add(num1, num2); 這里調(diào)用遠程相加的時候為什么是空指針?
2017-03-11
源自:AIDL-小白成長記 2-2
正在回答
如果你是看著這個視頻敲的代碼,那么請在IRemoteService類里的onBind方法,返回iBinder,不要return null.
親測結果:AndroidManifest.xml中沒有注冊。在</application>前加入下面的代碼。記得修改android:name中IRemoteService的路徑
<service ? ?android:name=".IRemoteService" ? ?android:process=":remote"> ? ?<intent-filter> ? ? ? ?<action android:name="com.example.lbl.aidlserver.IRemoteService" /> ? ?</intent-filter></service>
看看iMyAidlInterface是不是沒有生成.java文件
舉報
AIDL-小白成長記,想要快速入門,看本次的教程就對了
7 回答iImoocAidl報空指針異常
1 回答關于無法調(diào)用AIDL空指針的問題
2 回答兩種方法都無法綁定到遠程服務?也就無法調(diào)用ServiceConnection這個接口,導致報空指針異常
4 回答空指針異常
2 回答空指針異常!??!
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號-11 京公網(wǎng)安備11010802030151號
購課補貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動學習伙伴
掃描二維碼關注慕課網(wǎng)微信公眾號
2017-11-09
如果你是看著這個視頻敲的代碼,那么請在IRemoteService類里的onBind方法,返回iBinder,不要return null.
2017-05-14
親測結果:AndroidManifest.xml中沒有注冊。在</application>前加入下面的代碼。記得修改android:name中IRemoteService的路徑
<service
? ?android:name=".IRemoteService"
? ?android:process=":remote">
? ?<intent-filter>
? ? ? ?<action android:name="com.example.lbl.aidlserver.IRemoteService" />
? ?</intent-filter>
</service>
2017-03-13
看看iMyAidlInterface是不是沒有生成.java文件