why need to wait some second after enable GPS,to work?

204 Views Asked by At

I am making a small app, when the user clicks the button the app gets the users location and opens Google maps.

The problem is, if the users mobile doesn't have GPS enabled , then enables it and clicks the button again, this method will return null:

location = service.getLastKnownLocation(provider);

When I wait after enabling GPS and then click the button, the method will work correctly and return the location.

How can I solve this problem?

4

There are 4 best solutions below

3
On

As the answers mention above, the device will get the location after a while. If you are in the middle of a flow, you can show a ProgressSpinner and poll getLastKnownLocation() for x seconds to get a location.

0
On

If you hadn't used GooglePlayServicesClient try this to get user location.

It is the fastest way to get current lat long.

For reference and code use the following link.

http://developer.android.com/training/location/retrieve-current.html

Hop i helped you.

2
On

why need to wait some second after enable GPS,to work?

It's because when you enable GPS it'll fix position of Satellite and based on that you'll able to get Location.

2
On

It is obviously a default behaviour, when you stop GPS and start it again, there is a small gap between start and stop, at that point, GPS will do its task, to get satellite data and after that it will provide you location. If we want to drive fast then we must need to start from 1st gear, same behaviour GPS doing.