-2

可能重复:
如何在 Android 上以编程方式启用或禁用 GPS?
android GPS以编程方式启用

需要帮助以在特定时间间隔内以编程方式打开 GPS。可能吗?

4

1 回答 1

0

这是可用于此的代码片段

 private void EnableGPS(){   

    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);  
   }  }    
于 2013-01-29T13:57:09.767 回答