我想在通知中添加一个事件侦听器,以便当用户来自通知时我可以处理其他进程。
我的一些代码在这里...
// Create the notification
var notification = Titanium.Android.createNotification({
// icon is passed as an Android resource ID -- see Ti.App.Android.R.
icon: Ti.App.Android.R.drawable.my_icon,
contentTitle: 'Something Happened',
contentText : 'Click to return to the application.',
contentIntent: pending
});
// 添加监听器到通知
notification.addEventListener('event_name',function(){});
在这里我不知道event_name的名称是什么。
如果有任何其他方法来处理这个问题,请建议。
谢谢