如何使用PhoneGap中的LocalNotifications插件通知应用程序

时间:2012-07-08 19:59:50

标签: android cordova notifications

我正在开发一个PhoneGap / Cordova应用程序,我已成功使用此插件添加了LocalNotifications:https://github.com/phonegap/phonegap-plugins/tree/master/Android/LocalNotification;但是,我有一个小问题,当我点击通知窗口中的通知我的应用程序没有打开时,我的意思是,没有任何反应,当有人点击我的应用程序的通知时,有人可以解释我如何打开它吗? / p>

谢谢!

1 个答案:

答案 0 :(得分:0)

我找到了答案,在AlarmReceiver.class中查看以下行:

PendingIntent.getActivity(context,0,new Intent(),0);

替换为:

Intent notificationIntent = new Intent(context,YourApp.class); final PendingIntent contentIntent = PendingIntent.getActivity(context,0,notificationIntent,0);

YourApp.class是您要打开的类