我有一个“跟踪我的位置”按钮,它使用 GPS 并成功跟踪我的位置。但是当我点击后退按钮时,跟踪停止。我希望跟踪在后台进行,即使用户切换到任何其他应用程序
我希望这个功能在后台运行
private void centerOnLocation()
{
loc = locman.getLastKnownLocation(provider);
if(loc != null)
{
lat = loc.getLatitude();
lon = loc.getLongitude();
templat=lat;
templon=lon;
System.out.println("TrackedLat:"+loc);
System.out.println("temporaryyyyyyyyyyyyyy");
System.out.println("Templat:"+templat);
System.out.println("TempLon:"+templon);
System.out.println("matlat matlon");
System.out.println("TrackedLon:"+matlat);
System.out.println("TrackedLon:"+matlon);
Log.i(TAG+"_loc",loc.toString());
Log.i(TAG, "Lat="+lat+" lon="+lon);
GeoPoint newPoint = new GeoPoint((int)(lat*1e6),(int)(lon*1e6));
mapControl.animateTo(newPoint);
getSatelliteData();
if(displayOverlay != null){
displayOverlay.putSatStuff(lat, lon, satAccuracy, bearing, altitude,
speed, currentProvider, numberSats);
}
}
functiontocompare(matlat,matlon,templat,templon);
}