我想在用户按下按钮时删除位置更新。该类实现了一个像这样的位置监听器
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);
既不工作,有可能做到这一点吗?