0

这是我的服务连接:

   private ServiceConnection mConnection = new ServiceConnection() {
    public void onServiceConnected(ComponentName className, IBinder service) {
        Log.i("","onServiceConnected TRUE");
        locationService = ((LocationService.ServiceBinder)service).getService();
    }

    public void onServiceDisconnected(ComponentName className) {
        Log.i("","onServiceConnected TRUE DISCONNECT");
        locationService = null;
    }
};

这是永远不会输入的。我这样称呼它:

  void doBindService() {
    bindService(new Intent(this, LocationService.class), mConnection, Context.BIND_AUTO_CREATE);
}

从我的 ApplicationClass onCreate:

  Intent i= new Intent(PSLocationCenter.this, LocationService.class);
    startService(i);
    doBindService();

我在清单中有这个:

   <service android:name=".services.LocationService" android:enabled="true"/>

我试图错误地绑定它吗?为什么不叫。

4

1 回答 1

0

我知道这已经晚了,但也许它会对某人有所帮助。这个答案是有道理的:使用 getApplicatinContext 我必须承认它还没有为我工作,我还在寻找,但你似乎遇到了同样的问题。

于 2017-02-20T10:57:21.743 回答