PendingIntent पहली सूचना के लिए सही ढंग से काम करता है लेकिन बाकी के लिए गलत है
protected void displayNotification(String response) { Intent intent = new Intent(context, testActivity.class); PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent, Intent.FLAG_ACTIVITY_NEW_TASK); Notification notification = new Notification(R.drawable.icon, "Upload Started", System.currentTimeMillis()); notification.setLatestEventInfo(context, "Upload", response, pendingIntent); nManager.notify((int)System.currentTimeMillis(), notification); } यह फ़ंक्शन कई बार कहा जाएगा। मैं प्रत्येक notificationके लिए गवाही देना चाहूंगा जब क्लिक किया जाए। …