自动开启GPS

时间:2013-01-20 11:32:42

标签: android gps

我在Google上搜索了有关利用Power Manager Bug来解决此问题的解决方案。但是因为虫子现在已经解决了。那么现在我怎么能解决这个应用程序启动时启动GPS的问题呢? 请帮忙。

1 个答案:

答案 0 :(得分: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()的{​​{1}}方法拨打此功能。

或:

activity

感谢。