2

私は PhoneGap/Cordova アプリケーションを開発しています。このプラグインを使用して LocalNotifications を正常に追加しました: https://github.com/phonegap/phonegap-plugins/tree/master/Android/LocalNotification ; ただし、通知ウィンドウで通知をタップしてもアプリケーションが開かれないという小さな問題が 1 つあります。

ありがとうございました!

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 に答える