デバイスが動き始めたら、GPS の更新を開始したいと思います。
locationManager = (LocationManager) this.getSystemService(Context.LOCATION_SERVICE);
locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, locationListener);
デバイスが停止したらすぐに、GPS の更新を停止したいと考えています。
locationManager.removeUpdates(locationListener);
どうすればいいですか?最善のアプローチは?