0

在 android 应用程序中想要通过按钮获取位置点击这里是我的代码

  public class GPSTracker extends Service implements LocationListener {

private final Context mContext;

// flag for GPS status
boolean isGPSEnabled = false;

// flag for network status
boolean isNetworkEnabled = false;

// flag for GPS status
boolean canGetLocation = false;

Location location; // location
double latitude; // latitude
double longitude; // longitude
// The minimum distance to change Updates in meters
private static final long MIN_DISTANCE_CHANGE_FOR_UPDATES = 0; // 10 meters

// The minimum time between updates in milliseconds
private static final long MIN_TIME_BW_UPDATES = 1000 * 60 * 1; // 1 minute

// Declaring a Location Manager
protected LocationManager locationManager;

public GPSTracker(Context context) {
    this.mContext = context;
    getLocation();
}

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");
                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 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;
}

/**
 * Stop using GPS listener Calling this function will stop using GPS in your
 * app
 * */
public void stopUsingGPS() {
    if (locationManager != null) {
        locationManager.removeUpdates(GPSTracker.this);
    }
}

/**
 * Function to get latitude
 * */
public double getLatitude() {
    if (location != null) {
        latitude = location.getLatitude();
    }

    // return latitude
    return latitude;
}

/**
 * Function to get longitude
 * */
public double getLongitude() {
    if (location != null) {
        longitude = location.getLongitude();
    }

    // return longitude
    return longitude;
}


/**
 * Function to check GPS/wifi enabled
 * 
 * @return boolean
 * */
public boolean canGetLocation() {
    return this.canGetLocation;
}

public void onLocationChanged(Location location) {

              this.location=location;
}

public void onProviderDisabled(String provider) {
}

public void onProviderEnabled(String provider) {
}

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

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

}

以及从上面的代码中获取纬度、经度的调用函数。

double lat = gps.getLatitude();
double log = gps.getLongitude();

但即使位置发生变化,它也只会给出相同的位置。

任何人帮助我...提前谢谢..

4

3 回答 3

0

您的代码似乎正确。我能想到的唯一原因是该设备无法获取位置。设备需要几分钟才能锁定您的位置,因此请尝试给它一些时间。

您可以adb shell dumpsys location用来检查哪些应用注册了位置侦听器,以及您的应用是否在其中。它还会告诉你 android 上次获得位置更新是什么时候。还可以尝试运行任何其他位置应用程序以查看此问题是否与您的应用程序或环境有关。

于 2013-09-13T06:06:10.340 回答
0

我查看了您的代码,它似乎在所有方面都是正确的。您能否按照您给出的最小值将最小距离设为 0 来尝试一下。距离 10 米,可能是您没有以那么快的速度移动,您的服务可能需要最少的时间。距离作为主要点而不是最小值。时间。

@Dynamo: requestupdatelocation 调用 onLocationChanged 回调方法。它并不完全取决于位置分配。位置值将根据用户位置更新而改变。

这里的问题是“onLocationChanged”回调方法没有调用给定参数。

于 2013-09-10T06:08:05.777 回答
0

尝试这个

public void onLocationChanged(Location location) {
   this.location = location;
}

并尝试将 MIN_DISTANCE_CHANGE_FOR_UPDATES 减少到最小值。

于 2013-09-10T06:19:50.743 回答