0

我正在尝试编写一个位置跟踪服务,该服务在应用程序启动后立即启动,在应用程序进入后台后立即停止,并在应用程序返回前台后立即重新启动。

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

我已经尝试在我的自定义 Application 类中绑定一个服务,但是在我的初始 Activity 加载之前该服务从未被绑定 - 我的初始 Activity 需要这个服务,所以我在尝试访问该服务时不断收到一个空指针异常。

但也许我走错了方向——最好的策略是什么?我不需要超级精确的位置,我不在乎它来自 GPS 还是网络。

4

1 回答 1

0

下面的代码对我有用...

您将获得该位置,只需在您想要的任何地方明智地使用它...

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;
}
于 2013-04-22T10:22:57.767 回答