我创建了一个使用区域设置通知的应用程序。为了设置通知,调用后端,并返回要设置的通知列表。我创建了一个遍历此列表的循环,并一一设置通知。我注意到设置通知几乎需要一秒钟。这是我在设置通知时调用的函数:
public function sendNotification(title:String, body:String, delay:int, id:int, tickerText:String, data:String, alertAction:String = "") : void
{
if (Notifications.isSupported)
{
Notifications.service.notify(
new NotificationBuilder()
.setId(id)
.setDelay( delay )
.setAlert( tickerText )
.setTitle( title )
.setSound("sound/trigger")
.enableVibration(false)
.setCount(1)
.setBody( body )
.setPayload( data )
.build()
);
}
}
有可能加快这个速度吗?也许有一批?