需要帮助以在特定时间间隔内以编程方式打开 GPS。可能吗?
问问题
225 次
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 回答