在Android上显示Firebase通知,需要在后台接收消息并在系统托盘中显示通知,但在锁屏时可能无法显示通知。解决这个问题的方法是创建一个通知通道,并在Android的通知设置中启用锁定屏幕通知。以下是代码示例:
//设置通知通道 if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { NotificationChannel channel = new NotificationChannel("channel_id", "channel_name", NotificationManager.IMPORTANCE_DEFAULT); NotificationManager manager = getSystemService(NotificationManager.class); manager.createNotificationChannel(channel); }
//构建通知 NotificationCompat.Builder builder = new NotificationCompat.Builder(this, "channel_id") .setContentTitle(title) .setContentText(message) .setPriority(NotificationCompat.PRIORITY_DEFAULT) .setSmallIcon(R.drawable.notification_icon);
//调用系统通知服务 NotificationManagerCompat notificationManager = NotificationManagerCompat.from(this); notificationManager.notify(notificationId, builder.build());
同时,还需在应用的AndroidManifest.xml文件中添加以下代码以启用锁定屏幕通知:
最后,确保使用最新版本的Firebase API和Google Play服务组件。