up vote 13 down vote favorite
8
share [g+] share [fb]

I'm currently writing an app in Android that works with the GPS, at the moment I'm able to work out whether the GPS is enabled, my problem is that I want to enable the GPS on app startup if it is disabled, how can I do this programmaticaly?

link|improve this question

67% accept rate
depends on the version of Cupcake. 1.5 doesnt allow it apparently. – Devtron Jun 26 '09 at 23:07
feedback

6 Answers

up vote 27 down vote accepted

You can't, starting with Android 1.5. The most you can do is pop open the activity to allow the user to toggle it on/off. Use the action held in android.provider.Settings.ACTION_LOCATION_SOURCE_SETTINGS to craft an Intent to open this activity.

link|improve this answer
2  
Why is this disabled? Why not allow developers to toggle this? the Power Control widget can, so we should be able to as well. Dont you think? – Adam Lerman Apr 27 '10 at 12:26
8  
It is disabled for privacy reasons. If the user wants GPS off, the user should have GPS off, period. – CommonsWare Apr 27 '10 at 13:13
These guys seem to have figured it out. Unfortunately the apk is obfuscated and I could not figure out how it was accomplished. URL:market.android.com/… – sweeney Jul 20 '11 at 19:39
feedback
if(!LocationManager.isProviderEnabled(android.location.LocationManager.GPS_PROVIDER ))
{
    Intent myIntent = new Intent( Settings.ACTION_SECURITY_SETTINGS );
    startActivity(myIntent);
}
link|improve this answer
4  
This code didn't compile for me on android 2.2, as .isProviderEnabled is not a static method on LocationManager. Working code for me was as follows (apologies for formatting) LocationManager locationManager = (LocationManager) getSystemService(LOCATION_SERVICE); if(!locationManager.isProviderEnabled(LocationManager.GPS_PROVIDER )) { Intent myIntent = new Intent( Settings.ACTION_LOCATION_SOURCE_SETTINGS ); startActivity(myIntent); } – Ben Clayton Jan 28 '11 at 17:26
feedback

This method code can be help for you

private void turnGPSOnOff(){
  String provider = Settings.Secure.getString(getContentResolver(), Settings.Secure.LOCATION_PROVIDERS_ALLOWED);
  if(!provider.contains("gps")){
    final Intent poke = new Intent();
    poke.setClassName("com.android.settings", "com.android.settings.widget.SettingsAppWidgetProvider");
    poke.addCategory(Intent.CATEGORY_ALTERNATIVE);
    poke.setData(Uri.parse("3")); 
    sendBroadcast(poke);
    //Toast.makeText(this, "Your GPS is Enabled",Toast.LENGTH_SHORT).show();
  }
}
link|improve this answer
feedback

You might use the following:

try {
  Settings.Secure.setLocationProviderEnabled(getContentResolver(), LocationManager.GPS_PROVIDER, true);
} catch (Exception e) {
  logger.log(Log.ERROR, e, e.getMessage());
}

but it will only work if you have system signature protection level. So you need to cook your own Image to actually use it :/

link|improve this answer
feedback

Yes, install it as a system application

link|improve this answer
feedback

if your question is at the user level of android these properties are located in: "Settings -> Location -> Use wireless networks" -> "Settings -> Location -> Use GPS satellites".

But at the developer can use the class "android.provider.Settings.Secure" with the appropriate permissions.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.