PendingIntent hoạt động chính xác cho thông báo đầu tiên nhưng không chính xác cho phần còn lại
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); } Hàm này sẽ được gọi nhiều lần. Tôi muốn mỗi người notificationkhởi chạy testActivity khi được nhấp. …