我有一个问题,我的服务实现了LocationListener,似乎每500毫秒就会收到一个GPSupdate。无论我在requestLocationUpdates函数中输入了多少minTime。
我的代码片段:
public class LocationService extends Service implements LocationListener {
LocationManager locMan;
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
locMan = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
locMan.isProviderEnabled(android.location.LocationManager.GPS_PROVIDER;
locMan.requestLocationUpdates( LocationManager.GPS_PROVIDER, 60000, 1, this);
}
public void onLocationChanged(Location location) {
Log.d( "Loc", "Location has been changed" );
}
}
从我的主活动中的一个按钮,我将调用startService(),之后它应该在后台运行,但它会不断更新。