Android requestLocationUpdates失败

时间:2013-03-06 07:16:20

标签: android gps location

我启动一个服务并尝试使用requestLocationUpdates,因为有一个NULLpointerException,它会使应用程序失败。

2 个答案:

答案 0 :(得分:1)

好像你没有初始化它刚宣布的locationManager

答案 1 :(得分:0)

  

NullPointerException的原因

您没有初始化locationManger。

以这种方式初始化。

locationManager = (LocationManager) this.getSystemService(LOCATION_SERVICE);
Location myCurrentLocation = locationManager.getLastKnownLocation(getBestProvider());