Android的 - 最佳定位跟踪策略(Android - Best Location Tracki

2019-10-29 04:43发布

我想写,一旦应用程序开始启动位置跟踪服务,停止一旦应用进入后台,并且应用回来前台尽快重新启动。

在运行时的服务应轮询新的位置每5分钟(以节约电池),并在找到新的位置(onLocationChanged()),它更新,我可以从任何活动检索变量。

我曾尝试结合在我的自定义应用类服务,但服务绝不是我最初的活动加载之前束缚 - 和我最初的活动需要这种服务,所以我一直在尝试访问该服务时得到一个空指针异常。

但是,也许我会在错误的方向 - 这将是我们的最佳策略是什么? 我并不需要一个超级精确的位置,如果它来自GPS或网络我不在乎。

Answer 1:

下面的代码工作对我来说...

你会得到任何你想要的位置,就使用它明智地...

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


文章来源: Android - Best Location Tracking Strategy