FileDocCategorySizeDatePackage
FusedLocationService.javaAPI DocAndroid 5.1 API1351Thu Mar 12 22:22:40 GMT 2015com.android.location.fused

FusedLocationService

public class FusedLocationService extends android.app.Service

Fields Summary
private FusedLocationProvider
mProvider
Constructors Summary
Methods Summary
public android.os.IBinderonBind(android.content.Intent intent)

        if (mProvider == null) {
            mProvider = new FusedLocationProvider(getApplicationContext());
        }
        return mProvider.getBinder();
    
public voidonDestroy()

        mProvider = null;
    
public booleanonUnbind(android.content.Intent intent)

        // make sure to stop performing work
        if (mProvider != null) {
            mProvider.onDisable();
        }
      return false;