简体   繁体   中英

phonegap local notification

i have implemented a local notification in my android app using phonegap localnotification plugin.

notification get trigger properly but while clicking on notification app does not open.

what i want to relaunch a app on clicking of status notification.

Thanks and regards

In AlarmReciever class, in onRecieve event, change the line 79,

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

to

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

It starts, new activity

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM