Skip to content

Class LocationListener

Il Kadyrov edited this page Nov 9, 2020 · 3 revisions

LocationListener provides a callback to be invoked when LocationManager class downloads the location from server or load it from the storage. The callback is invoked in the UI thread.

Referenced from: LocationManager.

public class LocationListener
{
  public void onLocationLoaded(Location location);
  public void onDownloadProgress(int received, int total);
  public void onLocationFailed(Error error);
}

Clone this wiki locally