0

アプリがバックグラウンドにある場合でも位置追跡を維持する必要があるアプリを構築しています。基本的に、再生サービスのGoogleApiClientおよびLocationServices.FusedLocationApi.requestLocationUpdatesメソッドを使用してIntentServiceを呼び出しています。

次のコードは、アクティビティのバックグラウンドで位置情報の更新をトリガーする方法です。

private void startLocationUpdatesOnBackground() { 

    mLocationRequest = LocationRequest.create()
                .setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY)
                .setInterval(1000)
                .setFastestInterval(1000);

    pendingIntent = PendingIntent.getService(this, 0, 
        new Intent(this, LocationBackgroundService.class), PendingIntent.FLAG_UPDATE_CURRENT); 

    LocationServices.FusedLocationApi.
        requestLocationUpdates(mGoogleApiClient, mLocationRequest, pendingIntent);
}

それはうまくいきます。ただし、アプリがユーザーによって (タスク マネージャーを介して) 終了された場合、このIntentService (LocationBackgroundService と呼ばれる)
を停止したいと考えています。どうやってやるの?

4

1 に答える 1

0

試す:

LocationServices.FusedLocationApi.removeLocationUpdates(mGoogleApiClient, this);

http://developer.android.com/intl/es/training/location/receive-location-updates.html#stop-updates

于 2016-04-12T21:16:01.763 に答える