পেন্ডিং ইন্টেন্ট প্রথম বিজ্ঞপ্তির জন্য সঠিকভাবে কাজ করে তবে বাকীগুলির জন্য ভুল করে
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ক্লিক করব প্রত্যেকের জন্য পরীক্ষাঅ্যাক্টিভিটি চালু করতে চাই । দুর্ভাগ্যক্রমে, কেবলমাত্র …