2

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

谢谢!

4

1 回答 1

0

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

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

用。。。来代替:

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

其中 YourApp.class 是您要打开的类

于 2014-07-23T05:02:40.633 回答