你好,我写了一个创建通知的类,但是问题是状态栏中出现了通知图标,通知块甚至没有出现在锁定屏幕中。在文档中,它写为使用NotificationManagerCompat
来显示通知(Docs link)。这是我的代码:
public class NotificationsService {
private Context mContext;
private NotificationManager mNotificationManager;
public NotificationsService(Context context) {
mContext = context;
}
public void sendNotification(int iconResource) {
Notification notification = buildNotification(iconResource);
// mNotificationManager.notify(0 /* ID of notification */, notification);
NotificationManagerCompat notificationManager = NotificationManagerCompat.from(mContext);
notificationManager.notify(70, notification);
}
public Notification buildNotification(int iconResource) {
String CHANNEL_ID = "type"; // The id of the channel.
CharSequence channelName = "dsfsf";
NotificationChannel channel = null;
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) {
channel = new NotificationChannel(CHANNEL_ID, channelName, NotificationManager.IMPORTANCE_DEFAULT);
}
Uri defaultSoundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(mContext, CHANNEL_ID)
.setSmallIcon(iconResource)
.setContentTitle("title")
.setContentText("message")
.setAutoCancel(true)
.setPriority(NotificationCompat.PRIORITY_DEFAULT)
.setSound(defaultSoundUri)
.setChannelId(CHANNEL_ID);
// .setContentIntent(pendingIntent);
mNotificationManager = (NotificationManager) mContext.getSystemService(Context.NOTIFICATION_SERVICE);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O && mNotificationManager != null) {
mNotificationManager.createNotificationChannel(channel);
}
return notificationBuilder.build();
}
并像这样使用:
NotificationsService notif = new NotificationsService(context);
notif.sendNotification(R.mipmap.ic_launcher);
仅显示应用程序图标,并且仅在状态栏中显示通知
答案 0 :(得分:0)
您需要将通知通知给通知管理员。我已经开发了一种用于为Oreo或高级SDK生成通知的方法。
在您的代码中使用正确的参数调用此方法...
//This method is for Oreo
@RequiresApi(api = Build.VERSION_CODES.O)
public static void createSimpleNotificationForOreo(Context context, PendingIntent pendingIntent, String notificationTitle, String notificationContent, int notificationId, String notificationChannelId) {
Notification.BigTextStyle bigText = new Notification.BigTextStyle();
bigText.bigText(notificationContent);
bigText.setBigContentTitle(notificationTitle);
Notification.Builder notificationBuilder = new Notification.Builder(context)
.setSmallIcon(R.drawable.ic_small_notification)
.setLargeIcon(BitmapFactory.decodeResource(context.getResources(), R.mipmap.ic_launcher))
.setColor(context.getResources().getColor(R.color.colorPrimary))
.setContentText(notificationContent)
.setStyle(bigText)
.setChannelId(notificationChannelId)
.setContentIntent(pendingIntent);
Notification notification = notificationBuilder.build();
notification.flags |= Notification.FLAG_AUTO_CANCEL;
notification.defaults |= Notification.DEFAULT_SOUND;
notification.defaults |= Notification.DEFAULT_VIBRATE;
NotificationManager notificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
NotificationChannel mChannel = new NotificationChannel(notificationChannelId, NOTIFICATION_CHANNEL_NAME, NotificationManager.IMPORTANCE_HIGH);
if (notificationManager != null) {
notificationManager.createNotificationChannel(mChannel);
notificationManager.notify(notificationId, notification);
}
}