web-dev-qa-db-fra.com

Comment puis-je activer la désactivation du GPS par programmation dans Android?

Je crée une application anti-vol et, en localisant mon téléphone via sms, cela fonctionne parfaitement jusqu'à 2.3. Mais dans 4.0, je ne peux pas activer ou désactiver le gps par programme. Existe-t-il un autre moyen possible d'activer le gps via le code?.

30
Gopi.cs

Essayez d'utiliser ce code. Cela a fonctionné pour moi sur toutes les versions.

public void turnGPSOn()
{
     Intent intent = new Intent("Android.location.GPS_ENABLED_CHANGE");
     intent.putExtra("enabled", true);
     this.ctx.sendBroadcast(intent);

    String provider = Settings.Secure.getString(ctx.getContentResolver(), Settings.Secure.LOCATION_PROVIDERS_ALLOWED);
    if(!provider.contains("gps")){ //if gps is disabled
        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")); 
        this.ctx.sendBroadcast(poke);


    }
}
// automatic turn off the gps
public void turnGPSOff()
{
    String provider = Settings.Secure.getString(ctx.getContentResolver(), Settings.Secure.LOCATION_PROVIDERS_ALLOWED);
    if(provider.contains("gps")){ //if gps is enabled
        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")); 
        this.ctx.sendBroadcast(poke);
    }
}
41
Sagar Patil