Tôi cần một chương trình sẽ thêm thông báo trên Android. Và khi ai đó nhấp vào thông báo, nó sẽ dẫn họ đến hoạt động thứ hai của tôi.
Tôi đã thiết lập mã. Thông báo sẽ hoạt động, nhưng vì lý do nào đó mà nó không hoạt động. Các Notification
không hiển thị gì cả. Tôi không biết tôi đang thiếu cái gì.
Mã của các tệp đó:
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
không được đưa ra? Có phải làNotification
không hiển thị?