How do I find out if the GPS of an Android device is enabled - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T09:23:46Z http://stackoverflow.com/feeds/question/843675 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/843675/how-do-i-find-out-if-the-gps-of-an-android-device-is-enabled 2 How do I find out if the GPS of an Android device is enabled Marcus 2009-05-09T17:13:01Z 2009-10-07T22:10:29Z <p>On an Android Cupake (1.5) enabled device, how do I check and activate the GPS? </p> http://stackoverflow.com/questions/843675/how-do-i-find-out-if-the-gps-of-an-android-device-is-enabled/843716#843716 3 Answer by Marcus for How do I find out if the GPS of an Android device is enabled Marcus 2009-05-09T17:33:00Z 2009-05-09T17:33:00Z <p>Best way seems to be the following:</p> <pre><code> final LocationManager manager = (LocationManager) getSystemService( Context.LOCATION_SERVICE ); if ( !manager.isProviderEnabled( LocationManager.GPS_PROVIDER ) ) { buildAlertMessageNoGps(); } private void buildAlertMessageNoGps() { final AlertDialog.Builder builder = new AlertDialog.Builder(this); builder.setMessage("Yout GPS seems to be disabled, do you want to enable it?") .setCancelable(false) .setPositiveButton("Yes", new DialogInterface.OnClickListener() { public void onClick(@SuppressWarnings("unused") final DialogInterface dialog, @SuppressWarnings("unused") final int id) { launchGPSOptions(); } }) .setNegativeButton("No", new DialogInterface.OnClickListener() { public void onClick(final DialogInterface dialog, @SuppressWarnings("unused") final int id) { dialog.cancel(); } }); final AlertDialog alert = builder.create(); alert.show(); } </code></pre> http://stackoverflow.com/questions/843675/how-do-i-find-out-if-the-gps-of-an-android-device-is-enabled/845264#845264 2 Answer by Mike Hearn for How do I find out if the GPS of an Android device is enabled Mike Hearn 2009-05-10T12:40:58Z 2009-05-10T12:40:58Z <p>GPS will be used if the user has allowed it to be used in its settings. </p> <p>You can't explicitly switch this on anymore, but you don't have to - it's a privacy setting really, so you don't want to tweak it. If the user is OK with apps getting precise co-ordinates it'll be on. Then the location manager API will use GPS if it can.</p> <p>If your app really isn't useful without GPS, and it's off, you can open the settings app at the right screen using an intent so the user can enable it.</p>