网络提供商生成2个位置的副本

时间:2013-01-14 00:12:34

标签: java android gps geolocation

我正在尝试通过gps提供程序首先生成一个位置,如果我得到一个null,我通过网络提供程序生成。 我的问题是网络提供商两次生成相同的位置..我将信息发送到数据库,并在同一时间发送相同的位置(相同的秒数!)。 这是一些代码:

gpsLocation = requestUpdatesFromProvider(LocationManager.GPS_PROVIDER, R.string.not_support_gps);
networkLocation = requestUpdatesFromProvider(LocationManager.NETWORK_PROVIDER, R.string.not_support_gps);
    // Update the UI immediately if a location is obtained.
if (gpsLocation != null) 
    updateUILocation(gpsLocation);
else
    updateUILocation(networkLocation);

这是requestUpdateFromProvider:

private Location requestUpdatesFromProvider(final String provider, final int errorResId) 
{
    Location location = null;
    if (mLocationManager.isProviderEnabled(provider)) 
    {
        mLocationManager.requestLocationUpdates(provider, TEN_SECONDS, TEN_METERS*2, listener);
        location = mLocationManager.getLastKnownLocation(provider);
    } 
    else
    {
        Toast.makeText(this, errorResId, Toast.LENGTH_LONG).show();
    }
    return location;
}

这是updateUILocation:

private void updateUILocation(Location location) 
{
    // We're sending the update to a handler which then updates the UI with the new location.
    Message.obtain(mHandler,
            UPDATE_LATLNG,
            location.getLatitude() + ", " + location.getLongitude()).sendToTarget();

    // Bypass reverse-geocoding only if the Geocoder service is available on the device.
    if (mGeocoderAvailable) 
        doReverseGeocoding(location);
}

这是处理程序:

    mHandler = new Handler() 
    {
        public void handleMessage(Message msg) 
        {
            if(msg.what == UPDATE_ADDRESS) //UPDATE_ADDRESS = 1
            {
                LocationService.this.address = (String) msg.obj; // update a string that show the user address
                new SendLocation(LocationService.this.id,(String)msg.obj);//send the info to the db.
            }
        }
    };

SendLocation正在按照它所做的正确做法,所以你不应该注意它。

修改

我忘了说第一段代码是从构造函数调用的方法。

1 个答案:

答案 0 :(得分:0)

如果创建了重复位置不是您的错,那么只需调用同步的forwardLocation(Location loc)方法,该方法存储最后一个接收位置的时间戳。 当最后存储的时间戳等于前一个时间戳时,此方法应忽略该位置。