Ho bisogno di un programma che aggiunga una notifica su Android. E quando qualcuno fa clic sulla notifica, dovrebbe portarlo alla mia seconda attività.
Ho stabilito il codice. La notifica dovrebbe funzionare, ma per qualche motivo non funziona. Non Notification
si vede affatto. Non so cosa mi sto perdendo.
Codice di quei file:
Notification n = new Notification.Builder(this)
.setContentTitle("New mail from " + "test@gmail.com")
.setContentText("Subject")
.setContentIntent(pIntent).setAutoCancel(true)
.setStyle(new Notification.BigTextStyle().bigText(longText))
.build();
NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
// Hide the notification after it's selected
notificationManager.notify(0, n);
Activity
è stato lanciato? NonNotification
si vede?