我似乎无法删除 Android 上地理位置更新事件的侦听器。
我想在停用时停止地理定位:
NativeApplication.nativeApplication.addEventListener(Event.DEACTIVATE, onAppDeactivate);
private function onAppDeactivate(e:Event):void {
if (Geolocation.isSupported) {
if (geolocation != null) {
geolocation.removeEventListener(GeolocationEvent.UPDATE, onGeolocationUpdate);
geolocation.setRequestedUpdateInterval(0);
geolocation = null;
}
}
}
我从删除监听器开始,但由于这不起作用,我还尝试一起删除地理位置。还是没有运气。。
有什么提示吗?