Notification notification = new NotificationCompat.Builder(context, channelId) .setSmallIcon(R.drawable.notification_icon) .setContentTitle("My notification") .setContentText("Hello World!") .setPriority(NotificationCompat.PRIORITY_HIGH) .setCategory(NotificationCompat.CATEGORY_MESSAGE) .setVisibility(NotificationCompat.VISIBILITY_PUBLIC) .setFullScreenIntent(pendingIntent, true) .build();
注意:android:targetSdkVersion属性必须设置为30或更高版本才能使用简短通知功能。
通过这个解决方法,您可以在Android 11中正确使用简短通知功能。