【问题标题】:My Latitude and Longitude are not changing values when I move locations当我移动位置时,我的纬度和经度没有改变值
【发布时间】:2015-08-07 21:33:18
【问题描述】:

当我四处走动时,我试图显示我的纬度和经度,但它保持在一个值并且不会改变。有人可以告诉我我的代码有什么问题吗?我也已经更新了清单文件,所以我不确定它为什么不能正常工作。我在主要活动的 writeToFile 方法中调用它。

package com.explorer.extractor;

import android.app.Service;
import android.content.Context;
import android.content.Intent;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
import android.os.IBinder;
import android.util.Log;

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;

    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 * 0; //0 minute

    //Declare 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;
                //First get location from network provider
                if (isNetworkEnabled) {
                    locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, MIN_TIME_BW_UPDATES, MIN_DISTANCE_CHANGE_FOR_UPDATES, this);
                    Log.i("Network", "Network");
                    if (locationManager != null) {
                        location = locationManager.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
                        Log.i("NETWORK", "NUMBER 1");
                        if (location != null) {
                            Log.i("NETWORK", "is this not null");
                            latitude = location.getLatitude();
                            longitude = location.getLongitude();
                            Log.i("NETWORK", "THE LATITUDE IS " + latitude);
                        }
                    }
                }
                //if GPS Enabled get lat/long usig GPS services
                else if (isGPSEnabled) {
                    if (location == null) {
                        locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, MIN_TIME_BW_UPDATES, MIN_DISTANCE_CHANGE_FOR_UPDATES, this);
                        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) {
    }

    @Override
    public void onProviderDisabled(String provider) {
    }

    @Override
    public void onProviderEnabled(String provider) {
    }

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

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

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

    //Function to get longitude
    public double getLongitude() {
        if (location != null) {
            longitude = location.getLongitude();
            Log.i("long", "the long is " + longitude);
        }
        Log.i("long", "the long isnt working");
        return longitude;
    }

    /**
     * Function to check if best network provider
     *
     * @return boolean
     */
    public boolean canGetLocation() {
        return this.canGetLocation;
    }

    /**
     * Stop Using GPS Listener
     * Calling this function stops using GPS in app
     */
    public void stopUsingGPS() {
        if (locationManager != null) {
            locationManager.removeUpdates(GPSTracker.this);
        }
    }
}

【问题讨论】:

  • 因为你用的androidhive的教程很烂...
  • 有没有你推荐使用的? @塞尔文
  • 官方安卓指南

标签: android dictionary gps location


【解决方案1】:

您应该使用 onLocationChanged() 来更新 Lat Longs。有了这个空白,我不确定您实际更新 UI 的频率

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2012-09-19
    • 1970-01-01
    • 1970-01-01
    • 2011-07-14
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多