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