Мне нужна программа, которая добавит уведомление на Android. И когда кто-то нажимает на уведомление, он должен перейти ко второму моему действию.
Я установил код. Уведомление должно работать, но почему-то не работает. Notification
Не показывается. Я не знаю, что мне не хватает.
Код этих файлов:
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
не запущен? ЛиNotification
не показывать?