每隔一段时间,我的应用程序在尝试获取用户位置时就会崩溃。不幸的是我没有这个错误,因为当我插入我的电脑时它从未发生过......
我正在使用它来获取我的用户位置:
LocationManager lm = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
Location location = lm.getLastKnownLocation(LocationManager.GPS_PROVIDER);
double longitude = location.getLongitude();
double latitude = location.getLatitude();
我在想有时这可能是空的?如果是这样,我该如何解决这个力关闭?