0

目标:确定一次 GPS 位置,然后将纬度/经度放入两个单独的 EditText 框中以显示给用户。

问题:我已经测试了我的方法,它在模拟器中运行良好,我向它发送 GPS 坐标,它运行良好且花花公子。我在两个单独的设备(v2.1 手机、v4.0 ICS 平板电脑)上尝试了它,并且 GPS 图标出现在通知中(一切都很好),但只是停留在那里试图确定位置。我已经测试了很多次,每次测试都给了足够的时间。编辑:当我外出时在电话上工作正常,所以我可以把它划掉。平板电脑还是有问题。

我在布里斯班市中心,所以我怀疑这是位置问题——此外,通过 GPS 定位我时,谷歌地图工作得很好。

如果我关闭 GPS 使其默认返回网络定位,它会很好地工作并为我提供位置。

方法:

(我调用的方法);

public void locateCoordinates(EditText latitudeInput, EditText longitudeInput) {
    // Find coordinates, place them in EditText boxes.

    // Create the locating services if needed
    if(locManager == null) {
        locManager = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
    }
    if(locListener != null) {
        // Unregister listener from locManager (in case of double click of Locate button)
        locManager.removeUpdates(locListener);
    }
    locListener = new LocListenerImpl(locManager, latitudeInput, longitudeInput);

    if(locManager.isProviderEnabled(LocationManager.GPS_PROVIDER)) {
        locManager.requestLocationUpdates(
                LocationManager.GPS_PROVIDER, 0, 0, locListener);
    } else if(locManager.isProviderEnabled(LocationManager.NETWORK_PROVIDER)) {
        locManager.requestLocationUpdates(
                LocationManager.NETWORK_PROVIDER, 0, 0, locListener);
        Toast.makeText(this,
                "GPS unavailable, trying network-based location instead.",
                Toast.LENGTH_SHORT).show();
    } else {
        Toast.makeText(this,
                "No locating methods enabled", Toast.LENGTH_SHORT).show();
    }

}

(监听器实现类);

public class LocListenerImpl implements LocationListener {

    private LocationManager locManager = null;
    private EditText latitudeInput = null;
    private EditText longitudeInput = null;

    public LocListenerImpl(LocationManager locManager, EditText latitudeInput, EditText longitudeInput) {
        this.latitudeInput = latitudeInput;
        this.longitudeInput = longitudeInput;
        this.locManager = locManager;
    }

    public void onLocationChanged(Location location) {
        if(location != null) {
            latitudeInput.setText(String.valueOf(location.getLatitude()));
            longitudeInput.setText(String.valueOf(location.getLongitude()));
            locManager.removeUpdates(this); // Location found, unregister listener
        }
    }

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

我正在努力查看我做错了什么或可能导致这种情况的原因。任何帮助表示赞赏!

4

3 回答 3

0

尝试将 locManager.removeUpdates(this) this 放在其他方法中,例如 onStop() 或在同一方法内的 else 循环中

于 2012-07-26T05:25:52.507 回答
0

您的代码看起来完全正常,因此您的设备一定有问题..

有时需要 10 分钟左右才能正确锁定 GPS。当您没有互联网连接时,它无法从互联网下载有关卫星星历表的粗略数据,因此需要很长时间才能找到卫星。即使你可以清楚地看到天空。

网络提供商在另一边是即时的,所以请尝试等待更长的时间..或尝试重新启动您的设备,或尝试取消选中并选中位置设置中的位置服务复选框(这有助于一些无法获得 GPS 修复的人),或尝试下载GPS 状态应用程序,您可以在其中查看有关 GPS 的一些更具体的数据(上次修复时间、首次修复时间、aGPS 数据状态、卫星详细信息……)

于 2012-07-26T05:28:45.087 回答
0

设备无法获取位置的一个可能原因是,在没有清晰的天空视野的情况下,它们无法连接到卫星。您通过网络(小区三角测量)获取位置,因为它只需要运营商提供商来确定位置。谷歌地图混合使用所有可用的方法(wi-fi、网络、GPS)来定位。在真机上进行测试,我建议你去开阔的天空呼吸一些新鲜空气:)

于 2012-07-26T05:34:48.740 回答