停止したいのですLocationListener
が、を使用するLog
と、メソッドの後でサービスがまだ実行されていることがわかりましたremoveUpdates()
(場所が変更されると、ログに挿入されます)。問題がどこにあるか知っていますか?前もって感謝します。
public class MyService extends Service implements LocationListener {
private final static String TAG = "MyService";
LocationManager lm;
public MyService() {
}
....//Other methods here
public void onLocationChanged(Location loc) {
Log.d(TAG, loc.toString());
if(/*A condition, which has to stop the service when it´s time*/)
{
lm.removeUpdates(this);
lm = null;
}
}
public void subscribeToLocationUpdates() {
this.lm = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
this.lm.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, this);
}
@Override
public void onDestroy() {
}
}
このサービスを別のアクティビティ、onCreateメソッドで呼び出します。
ComponentName comp = new ComponentName(getPackageName(),
MyService.class.getName());
ComponentName service = startService(new Intent().setComponent(comp));