ユーザーが通知から来たときに他のプロセスを処理できるように、通知にイベントリスナーを追加したいと思います。
私のコードの一部はここにあります...
// 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の名前がわかりません。
この問題を処理する他の方法がある場合は、お勧めします。
ありがとう