Java-Android位置错误

前端之家收集整理的这篇文章主要介绍了Java-Android位置错误 前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我已经将我的问题选出了几行代码

lm = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
Location location = lm.getLastKnownLocation(LocationManager.GPS_PROVIDER);
lm.requestLocationUpdates(LocationManager.GPS_PROVIDER,1000L,5.0f,this);
lat = location.getLatitude();
lng = location.getLongitude();
//lat = new Double(40.431682);
//lng = new Double(-74.2021819);
pLocation = new GeoPoint((int)(lat * 1000000),(int)(lng * 1000000));

如果您想知道我的onLocationChanged

public void onLocationChanged(Location location) {
        if (location != null) {
        lat = location.getLatitude();
        lng = location.getLongitude();
        pLocation = new GeoPoint((int)(lat * 1000000),(int)(lng * 1000000));
        }
}

如果我尝试获取LastKnownLocation,我的应用程序将崩溃

但是,如果我手动为其输入位置信息,它就可以正常工作

我现在不知道怎么了

最佳答案
首先,每当发生崩溃时,请在Eclipse中使用adb logcat,DDMS或DDMS透视图来获取与崩溃相关的Java堆栈跟踪.在这种情况下,我怀疑您在尝试使用位置对象时会发现您有一个NullPointerException.

调用requestLocationUpdates()之后,尤其是对于GPS之前,要等很久之后才能使用getLastKnownLocation(). GPS可能需要数十秒才能开始提供修复程序.

请更改您的代码以消除对getLastKnownLocation()的使用,而只使用需要在onLocationChanged()方法中已有位置的逻辑.至少,请寻找一个空位置对象,不要尝试使用它.

原文链接:https://www.f2er.com/android/531491.html

猜你在找的Android相关文章