2

我用谷歌搜索了一下,有一些关于利用 Power Manager Bug 来解决这个问题的解决方案。但是由于该错误现已解决。那么现在我该如何解决这个应用程序启动时启动 GPS 的问题呢?请帮忙。

4

1 回答 1

2

使用此功能:

private void turnGPSOn(){
    String provider = Settings.Secure.getString(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")); 
        sendBroadcast(poke);
    }
}

onCreate()您的activity.

或者 :

Intent intent=new Intent("android.location.GPS_ENABLED_CHANGE");
intent.putExtra("enabled", true);
sendBroadcast(intent);

谢谢。

于 2013-01-20T11:43:04.683 回答