Search code examples
androidgoogle-mapslocation-client

Differences of location services


I newbie in location and trying make service to show my current location and another one location saved previously. And what the difference of using LocationListener vs LocationClient?


Solution

  • The LocationListener connects to the LocationManager and retrieves your location. This worked and works fine.

    The LocationClient is a new way to implement this while some of the rest gets deprecated. It features more functions.

    Both methods actually works.