如何取消订阅LocationListener
从接收更新LocationManager
?
这是我的设置方式
mLocationManager = (LocationManager)this.getSystemService(LOCATION_SERVICE);
mListener = new LocationListener() {
public void onLocationChanged(Location location) {
Log.i("LocationListener", "Logging Change");
}
}
mLocationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER,
5000, 1, mListener);
在我退出创建的视图后,LocationListener
我仍然在 LogCat 窗口中收到日志消息。
我知道这是因为我正在孤立侦听器,但我看不到任何销毁方法,LocationListener
也看不到LocationManager
对象上的任何“删除侦听器”样式方法。