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

iImoocAidl报空指针异常

iImoocAidl报空指针异常,服务端MainActivity里面什么都不用写吗

提问者:果然是酱 2016-02-25 20:22

个回答

  • qq_阿le_0
    2016-05-28 18:50:18

    使用这种方式绑定服务

    intent.setAction("");

    bindService(intent, conn, Context.BIND_AUTO_CREATE);

  • 麦穗3
    2016-05-05 15:02:02

    572aefb900012f5a05000227.jpg

    这是什么意思啊


  • Js_Ly
    2016-04-24 22:02:27

    <service android:name=".AIDL"
       android:enabled="true"
       android:exported="true"></service>

    注册Service

  • 0菜园子0
    2016-03-11 08:54:24

    android5.0以下的版本用隐式Intent启动service,就不会报空了

  • llzll
    2016-03-04 18:09:34

    <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>


  • 慕婉清2569432
    2016-02-25 20:48:17

    你的服务启动了吗?