LocationListener
と呼ばれるサービスで問題が発生していますmyService
。
これが私のコードです:
///onStart method ..
onStart() {
locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE)
.
.
provider = locationManager.getBestProvider(criteria, true);
locationListener = (LocationListener) new MyLocationListener();
locationManager.requestLocationUpdates(provider, 0, 0, locationListener);
}
私のアクティビティには、サービスを停止するボタンがあります。私がしているボタンをクリックすると:
stopService(new Intent(getApplicationContext(), myService.class)
私が持っているmyService.java
ファイルには:
////onDestroy method....
onDestroy() {
locationManager=(LocationManager) getSystemService(Context.LOCATION_SERVICE);
locationManager.removeUpdates(locationListener); //Getting **exception here ....
}
次の例外が発生します。
java.lang.IllegalArgumentException: listener==null at android.location.LocationManager.removeUpdates(LocationManager.java:799) at
<.package_name>myService.onDestroy(myService.java:407)
なぜリスナーが理由もなくnullになるのかわかりません。どこが悪いのか教えてください!