Class IALocationListenerSupport
- java.lang.Object
-
- com.indooratlas.android.sdk.resources.IALocationListenerSupport
-
- All Implemented Interfaces:
IALocationListener
public class IALocationListenerSupport extends Object implements IALocationListener
Convenience class that implements methods fromIALocationListeneras no-ops.
-
-
Constructor Summary
Constructors Constructor Description IALocationListenerSupport()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidonLocationChanged(IALocation location)Called when the location has changed.voidonStatusChanged(String provider, int status, Bundle extras)Called when provider status changes.
-
-
-
Method Detail
-
onLocationChanged
public void onLocationChanged(IALocation location)
Description copied from interface:IALocationListenerCalled when the location has changed.There are no restrictions on the use of the supplied
.locationobject- Specified by:
onLocationChangedin interfaceIALocationListener- Parameters:
location- the new location
-
onStatusChanged
public void onStatusChanged(String provider, int status, Bundle extras)
Description copied from interface:IALocationListenerCalled when provider status changes.- Specified by:
onStatusChangedin interfaceIALocationListener- Parameters:
provider- alwaysIndoorAtlasstatus- current status of the service, seeIALocationManagerforSTATUS_XXXconstantsextras- an optional Bundle which contains extra status variables
-
-