我启动一个服务并尝试使用requestLocationUpdates,因为有一个NULLpointerException,它会使应用程序失败。
答案 0 :(得分:1)
好像你没有初始化它刚宣布的locationManager
。
答案 1 :(得分:0)
NullPointerException的原因
您没有初始化locationManger。
以这种方式初始化。
locationManager = (LocationManager) this.getSystemService(LOCATION_SERVICE);
Location myCurrentLocation = locationManager.getLastKnownLocation(getBestProvider());