How to Call GPS Setting from your Android App

Leave a Comment

This tutorial shows how to redirect the user to a system settings screen asking to modify some settings the application depends on. We will make a specific example with GPS: The application can be used only if GPS is available.

Calling System Setting

The android systems GPS setting screen can be called just like any other Activities:


startActivityForResult
(new Intent(android.provider.Settings.ACTION_LOCATION_SOURCE_SETTINGS), 0);

To check GPS availability use the code code below: (the Activity must implement LocationListener)  

LocationManager locationManager = (LocationManager) 
getSystemService(LOCATION_SERVICE);

locationManager.requestLocationUpdates
(LocationManager.GPS_PROVIDER, 1000L,1.0f, this);

boolean isGPS = locationManager.isProviderEnabled 
(LocationManager.GPS_PROVIDER);
The example application will do the following:

1. On application start check if gps is available. If it is on the application can proceed.

2. If GPS is turned off, display a dialog asking the user to turn it on, and 2 buttons, one to go to GPS settings screen, and a cancel button to exit the application.

3. When the dialog is displayed we must store in a variable that the user was already asked once to turn on GPS

4. If the user leaves to the GPS options screen, it is not sure that he will turn on the GPS!

5. When the user returns to uor application we recheck the GPS. If its available we can proceed, otherwise we close the application. (in order to check that it is a returm to the activity or is it its first start we check the variable we set in step 3)

So we will have the code in the applications starting Activitys onResume method, where we will detect GPS availability, use a dilaog to ask the user, an Intent to go to options screen, and a variable to indicate the state of the GPS turn on process.

0 comments:

Post a Comment