3

在我的应用程序中,我可以使用 GPS,但问题是它总是让我获得相同的位置。每次我从中检索位置时,它都会给我相同的价值。第一次取到它,我是无线上网的。然后我只带着 GPS 出去了,即使我在一英里外的位置也是一样的。我启用了3g,还是一样。

我将我的应用程序发送给我的一个朋友,他第一次获得了不同的位置,然后无论他走到哪里,他都会看到相同的位置。

这是我的代码:

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;
                // First get location from Network Provider
                if (isNetworkEnabled) {
//                  System.out.println("Network enabled");
                    locationManager.requestLocationUpdates(
                            LocationManager.NETWORK_PROVIDER,
                            MIN_TIME_BW_UPDATES,
                            MIN_DISTANCE_CHANGE_FOR_UPDATES, this);
                    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) {
//                  System.out.println("GPS enabled");
                    if (location == null) {
                        locationManager.requestLocationUpdates(
                                LocationManager.GPS_PROVIDER,
                                MIN_TIME_BW_UPDATES,
                                MIN_DISTANCE_CHANGE_FOR_UPDATES, this);
                        Log.d("GPS Enabled", "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;
    }

 @Override
    public void onLocationChanged(Location location) {
//      mAct.playToastMessage("Location Changed");
        getLocation();
//      mAct.setGPSText(location.getLatitude(),location.getLongitude());
    }

    @Override
    public void onProviderDisabled(String provider) {
    }

    @Override
    public void onProviderEnabled(String provider) {
    }

    @Override
    public void onStatusChanged(String provider, int status, Bundle extras) {
    }

    @Override
    public IBinder onBind(Intent arg0) {
        return null;
    }
4

2 回答 2

3
 locationManager.requestLocationUpdates(
                          LocationManager.NETWORK_PROVIDER,
                       MIN_TIME_BW_UPDATES,
                        MIN_DISTANCE_CHANGE_FOR_UPDATES, this);

在此对于 MIN_TIME_BW_UPDATES 和 MIN_DISTANCE_CHANGE_FOR_UPDATES 的参数,您必须设置 0 和 0。如果设置为 0,0。它会尽快为您提供位置更新。如果您为 设置较大的值,则在满足您的条件之前永远不会获得更新的值。我希望这可以解决您的问题。

于 2013-01-19T14:22:46.650 回答
1
@Override

public void onLocationChanged(Location loc)

{

loc.getLatitude();

loc.getLongitude();

String Text = “My current location is: “ +

“Latitude = “ + loc.getLatitude() +

“Longitude = “ + loc.getLongitude();


Toast.makeText( getApplicationContext(),Text,Toast.LENGTH_SHORT).show();

}

来源:获取当前位置的 GPS 教程。

于 2013-01-19T14:07:53.380 回答