要强制下载 AGPS 数据,我必须执行以下代码:
LocationManager locationmanager = (LocationManager)context.getSystemService("location");
Bundle bundle = new Bundle();
locationmanager.sendExtraCommand("gps", "force_xtra_injection", bundle);
locationmanager.sendExtraCommand("gps", "force_time_injection", bundle);
这是否可以检查设备是否支持 AGPS?我想确定,执行这段代码是必要的。