我已经提到了以下问题,但找不到答案:
- 无法获取服务对象(从未调用过 onServiceConnected),
- onServiceConnected 没有被调用,得到一个空指针异常,并且
- 在 bindService 方法之后从未调用过 onServiceConnected
这是我的代码:
@Override
public void onStart() {
super.onStart();
Context context = getApplicationContext();
Intent intent = new Intent(context, PodService.class);
context.bindService(intent, mPodServiceConn, Context.BIND_AUTO_CREATE);
}
private ServiceConnection mPodServiceConn = new ServiceConnection() {
@Override
public void onServiceConnected(ComponentName className, IBinder service) {
Log.e(TAG, "Pod: Service Connected");
mPodService = IPodService.Stub.asInterface(service); //here i am getting NullPointerException
}
}
我的服务类什么都不包含,只有这么多,我已经在下面展示了
public class PodService extends Service {
@Override
public IBinder onBind(Intent intent) {
// TODO Auto-generated method stub
Log.d("bound", "bound");
return null;
}
static class PodSeviceStub extends IPodService.Stub {
//here i implemented unimplemented methods
}
}
但是在 lolcat 中,我只bound
从 onBind() 函数中得到“”消息,而不是打印“ Pod: Service Connected
”,这意味着服务已成功启动。在lolcat中,我得到了NullPointerException
并且也在清单文件中提到了。