我想在用户按下按钮时删除位置更新。该类实现了像这样的locationlistener
public class Begin_Run_Map extends MapActivity implements LocationListener
以及稍后在代码中实现onLocationChange方法以及请求更新的locationmanager如此
locMan.requestLocationUpdates(LocationManager.GPS_PROVIDER, 2000, 1, this);
我尝试使用locMan.removeUpdates(this);
和locMan.removeUpdates(Begin_Run_Map.this);
既不工作,是否可以这样做?