我正在尝试编写一个位置跟踪服务,该服务会在应用启动后立即启动,一旦应用进入后台就会停止,并在应用返回到前台后立即重新启动。
服务应该在运行时每5分钟轮询一个新位置(以节省电量),并且当找到新位置时(onLocationChanged()),它会更新我可以从任何Activity检索的变量。
我已经尝试在我的自定义Application类中绑定服务,但是在我的初始Activity加载之前服务永远不会被绑定 - 而我的初始Activity需要这个服务,因此我在尝试访问服务时不断获得空指针异常。 p>
但也许我的方向是错误的 - 对此最好的策略是什么?我不需要超精确的位置,我不在乎它是来自GPS还是网络。
答案 0 :(得分:0)
以下代码为我工作......
您将获得位置,只需在任何地方使用它......
public Location getLocation() {
try {
locationManager = (LocationManager) mContext
.getSystemService(LOCATION_SERVICE);
// getting GPS status
isGPSEnabled = locationManager
.isProviderEnabled(LocationManager.GPS_PROVIDER);
// getting network status
isNetworkEnabled = locationManager
.isProviderEnabled(LocationManager.NETWORK_PROVIDER);
if (!isGPSEnabled && !isNetworkEnabled) {
// no network provider is enabled
} else {
this.canGetLocation = true;
if (isNetworkEnabled) {
locationManager.requestLocationUpdates(
LocationManager.NETWORK_PROVIDER,
MIN_TIME_BW_UPDATES,
MIN_DISTANCE_CHANGE_FOR_UPDATES, this);
Log.d("Network", "Network Enabled");
if (locationManager != null) {
location = locationManager
.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
if (location != null) {
latitude = location.getLatitude();
longitude = location.getLongitude();
}
}
}
// if GPS Enabled get lat/long using GPS Services
if (isGPSEnabled) {
if (location == null) {
locationManager.requestLocationUpdates(
LocationManager.GPS_PROVIDER,
MIN_TIME_BW_UPDATES,
MIN_DISTANCE_CHANGE_FOR_UPDATES, this);
Log.d("GPS", "GPS Enabled");
if (locationManager != null) {
location = locationManager
.getLastKnownLocation(LocationManager.GPS_PROVIDER);
if (location != null) {
latitude = location.getLatitude();
longitude = location.getLongitude();
}
}
}
}
}
} catch (Exception e) {
e.printStackTrace();
}
return location;
}