How do I find out if the GPS of an Android device is enabled - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T09:23:46Zhttp://stackoverflow.com/feeds/question/843675http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/843675/how-do-i-find-out-if-the-gps-of-an-android-device-is-enabled2How do I find out if the GPS of an Android device is enabledMarcus2009-05-09T17:13:01Z2009-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#8437163Answer by Marcus for How do I find out if the GPS of an Android device is enabledMarcus2009-05-09T17:33:00Z2009-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#8452642Answer by Mike Hearn for How do I find out if the GPS of an Android device is enabledMike Hearn2009-05-10T12:40:58Z2009-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>