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