I'm using google api fused location. I would like to get the current location with high accuracy without continuously track location with LocationListener interface.
I have a simple use case : A user tap on the button, the application would display the current latitude and longitude (fresh location).
Then, is getLastLocation() retrieve the location from a cache (which mean it can't be accurate in some case) or make a location request to get a fresh data ?
If no, is it possible to achieve my use case without to implement LocationListener interface ?