4

在发帖之前,我曾尝试对 GPS 问题进行研究。当我测试我的代码时,它一遍又一遍地重复相同的输出。该方法gpsStart()在计时器上调用。清单中添加了精细和粗略的位置权限。该方法appendLog()将输出存储在文件中。

public void gpsStart() {
        // Acquire a reference to the system Location Manager
        LocationManager locationManager = (LocationManager) this.getSystemService(Context.LOCATION_SERVICE);
        // Define a listener that responds to location updates
        LocationListener locationListener = new LocationListener() {
            public void onLocationChanged(Location location) {
                // Toast.makeText(getApplicationContext(), "location changed",
                // Toast.LENGTH_SHORT).show();
                // Called when a new location is found by the network location
                // provider.
                appendLog("Lat: " + location.getLatitude() + "\nLng: "
                        + location.getLongitude()+"\n");
                text3.setText("Lat: " + location.getLatitude() + "\nLng: "
                        + location.getLongitude());
            }

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

        public void onProviderEnabled(String provider) {
        }

        public void onProviderDisabled(String provider) {
        }
    };

    // Register the listener with the Location Manager to receive location
    // updates
    locationManager.requestLocationUpdates(
            LocationManager.GPS_PROVIDER, 0, 0, locationListener);
    locationManager.requestLocationUpdates(
            LocationManager.NETWORK_PROVIDER, 0, 0, locationListener);
}
4

3 回答 3

3

您不能gpsStart()在计时器中调用方法。我要说位置监听器是如何工作的

什么是位置监听器?

Location Listener 是在您的当前位置发生变化时通知您的类。要接收位置更新,您必须使用 LocationManager 类注册 LocationListener 类。

何时注册位置监听器?

这取决于您的应用程序的要求。例如,如果您希望位置监听器在地图上显示当前位置,那么您应该在活动的onCreate()或方法中注册位置监听器,并在或onResume()方法中取消注册接收器。如果即使您的应用程序没有运行,您也想接收位置,那么您可以使用服务来接收位置。onPause()onStop()

如何注册/取消注册位置监听器?

要注册 LocationListener 你首先需要 LocationManager 类的实例,你可以使用上下文来获取它

LocationManager locationManager = (LocationManager) context.getSystemService(Context.LOCATION_SERVICE);

之后,您将必须设置位置提供程序。有两种经常使用的提供程序。

  1. 全球定位系统供应商
  2. 网络提供商

现在要向这个位置提供者注册位置接收器,有一个requestLocationUpdatesLocationManager 方法。在此方法中,第一个参数是提供者名称,第二个参数是请求位置更新的最短时间。第三个参数是请求位置更改的最小距离。最后一个参数是 locationListener。在这里您可以如何使用该方法

locationManager.requestLocationUpdates(
                LocationManager.GPS_PROVIDER, minTime, minDistance, locationListener);
locationManager.requestLocationUpdates(
                LocationManager.NETWORK_PROVIDER, minTime, minDistance, locationListener);

要取消注册位置更新,您可以使用以下方法

locationManager.removeUpdates(locationListener)

注意:正如您在问题中提到的那样,您正在计时器中调用一个方法gpsStart,因此每次调用此方法时都会添加位置侦听器。因此,所有侦听器都在触发您的新位置,因此您可能多次获得相同的位置。取而代之的是,您应该在活动开始时调用此方法一次,并在活动结束时取消注册此 locationListener。

希望你得到。:D

享受!!!

于 2012-08-30T04:51:33.910 回答
1

最好为 Gps 创建 2 个 listeners.1 和其他用于网络。

以下是代码示例

public class MyLocationListener extends LocationListener  
{
            public void onLocationChanged(Location location) 
           {
                // Toast.makeText(getApplicationContext(), "location changed",
                // Toast.LENGTH_SHORT).show();
                // Called when a new location is found by the network location
                // provider.
                appendLog("Lat: " + location.getLatitude() + "\nLng: "
                        + location.getLongitude()+"\n");
                text3.setText("Lat: " + location.getLatitude() + "\nLng: "
                        + location.getLongitude());
            }

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

        public void onProviderEnabled(String provider) {
        }

        public void onProviderDisabled(String provider) {
        }
    }

MyLocationListener gpsListener=new MyLocationListener();
MyLocationListener networkListener=new MyLocationListener();

locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, gpslocationListener);    locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 0, 0, networklocationListener);
于 2012-08-30T03:47:11.413 回答
0

非常感谢您的回答。Dharmendra 你是对的,我确实需要关闭 LocationListeners,但是我的问题的答案要简单得多。我需要将最短时间(听众等待得到答案的时间)更改为大于零的值。我需要更改的值在下面以粗体显示(MINTIME)。

locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, MINTIME, 0, gpslocationListener);        locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, MINTIME, 0, networklocationListener);
于 2012-11-18T20:36:50.273 回答