tags:

views:

83

answers:

1

I just want to show text "please wait" while app is searching for satellite and show "ready" when we found and connected to satellite. How can I do it?

+2  A: 

Take a look here: http://developer.android.com/reference/android/location/LocationManager.html#getGpsStatus%28android.location.GpsStatus%29

Use getGpsStatus and the GPS_EVENT_FIRST_FIX status should tell you when you have received your first GPS status.

Bryan Denny