0

ユーザーが通知から来たときに他のプロセスを処理できるように、通知にイベントリスナーを追加したいと思います。

私のコードの一部はここにあります...

  // 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の名前がわかりません。

この問題を処理する他の方法がある場合は、お勧めします。

ありがとう

4

2 に答える 2

0

イベント名の「クリック」を試しましたか? それが通常のことです。私は行ってテストします。

于 2013-12-26T01:21:18.260 に答える