我使用推送通知来发送本地通知。 但没有事件被解雇。我想知道,当app是前台时推送事件得到了用户,所以我添加了事件监听器:
push = PushNotification.getInstance();
push.sendLocalNotification("sd", new Date().time / 1000 + 10, "title");
push.addEventListener(PushNotificationEvent.NOTIFICATION_RECEIVED_WHEN_IN_FOREGROUND_EVENT, function(e:PushNotificationEvent):void {
trace(e);
});