44

尝试在 Android O 上显示通知时收到此消息。

对于音量控制以外的操作,不推荐使用流类型

该通知直接来自示例文档,在 Android 25 上显示良好。

4

4 回答 4

63

根据对此 Google+ 帖子的评论:

目前NotificationCompat在 Android O 设备上使用时会出现这些 [警告](即使您从未传入自定义声音,也会NotificationCompat始终调用)。setSound()

在支持库更改其代码以使用 的AudioAttributes版本之前setSound,您将始终收到该警告。

因此,您对此警告无能为力。根据通知通道指南,Android O 完全不赞成在单个通知上设置声音,而是让您在特定类型的所有通知使用的通知通道上设置声音。

于 2017-07-30T02:28:27.113 回答
48

从 Android O 开始,您需要配置一个NotificationChannel,并在您尝试显示通知时引用该通道。

private static final int NOTIFICATION_ID = 1;
private static final String NOTIFICATION_CHANNEL_ID = "my_notification_channel";

...

NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
  NotificationChannel notificationChannel = new NotificationChannel(NOTIFICATION_CHANNEL_ID, "My Notifications", NotificationManager.IMPORTANCE_DEFAULT);

  // Configure the notification channel.
  notificationChannel.setDescription("Channel description");
  notificationChannel.enableLights(true);
  notificationChannel.setLightColor(Color.RED);
  notificationChannel.setVibrationPattern(new long[]{0, 1000, 500, 1000});
  notificationChannel.enableVibration(true);
  notificationManager.createNotificationChannel(notificationChannel);
}

NotificationCompat.Builder builder = new NotificationCompat.Builder(this, NOTIFICATION_CHANNEL_ID)
  .setVibrate(new long[]{0, 100, 100, 100, 100, 100})
  .setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION))
  .setSmallIcon(R.mipmap.ic_launcher)
  .setContentTitle("Content Title")
  .setContentText("Content Text");

  notificationManager.notify(NOTIFICATION_ID, builder.build());

几个重要的注意事项:

  1. 设置中指定的振动模式等NotificationChannel覆盖那些在实际中指定的Notification。我知道,它违反直觉。您应该移动将更改为通知的设置,或者为每个配置使用不同的 NotificationChannel。
  2. 将大部分NotificationChannel设置传递给createNotificationChannel(). 你甚至不能打电话deleteNotificationChannel()然后尝试重新添加它。使用已删除对象的 IDNotificationChannel将使其复活,并且与首次创建时一样不可变。它将继续使用旧设置,直到应用程序被卸载。因此,您最好确定您的频道设置,如果您正在使用这些设置,请重新安装应用程序以使其生效。
于 2017-07-30T02:17:03.787 回答
8

@sky-kelsey 所描述的一切都很好,只是补充一点:

如果它已经注册,您不应该每次都注册相同的频道,所以我有 Utils 类方法为我创建一个频道:

public static final String NOTIFICATION_CHANNEL_ID_LOCATION = "notification_channel_location";

public static void registerLocationNotifChnnl(Context context) {
    if (Build.VERSION.SDK_INT >= 26) {
        NotificationManager mngr = (NotificationManager) context.getSystemService(NOTIFICATION_SERVICE);
        if (mngr.getNotificationChannel(NOTIFICATION_CHANNEL_ID_LOCATION) != null) {
            return;
        }
        //
        NotificationChannel channel = new NotificationChannel(
                NOTIFICATION_CHANNEL_ID_LOCATION,
                context.getString(R.string.notification_chnnl_location),
                NotificationManager.IMPORTANCE_LOW);
        // Configure the notification channel.
        channel.setDescription(context.getString(R.string.notification_chnnl_location_descr));
        channel.enableLights(false);
        channel.enableVibration(false);
        mngr.createNotificationChannel(channel);
    }
}

字符串.xml:

<string name="notification_chnnl_location">Location polling</string>
<string name="notification_chnnl_location_descr">You will see notifications on this channel ONLY during location polling</string>

每次在显示类型通知之前,我都会调用该方法:

    ...
    NotificationUtil.registerLocationNotifChnnl(this);
    return new NotificationCompat.Builder(this, NotificationUtil.NOTIFICATION_CHANNEL_ID_LOCATION)
            .addAction(R.mipmap.ic_launcher, getString(R.string.open_app),
                    activityPendingIntent)
            .addAction(android.R.drawable.ic_menu_close_clear_cancel, getString(R.string.remove_location_updates),
                    servicePendingIntent)
            .setContentText(text)
            ...

另一个典型问题 - 通道默认声音 - 在这里描述:https ://stackoverflow.com/a/45920861/2133585

于 2017-12-14T15:26:27.010 回答
2

在 Android O 中,必须使用 aNotificationChannel并且NotificationCompat.Builder已弃用(参考)。

下面是一个示例代码:

NotificationCompat.Builder mBuilder =
        new NotificationCompat.Builder(mContext.getApplicationContext(), "notify_001");
Intent ii = new Intent(mContext.getApplicationContext(), RootActivity.class);
PendingIntent pendingIntent = PendingIntent.getActivity(mContext, 0, ii, 0);

NotificationCompat.BigTextStyle bigText = new NotificationCompat.BigTextStyle();
bigText.bigText(verseurl);
bigText.setBigContentTitle("Today's Bible Verse");
bigText.setSummaryText("Text in detail");

mBuilder.setContentIntent(pendingIntent);
mBuilder.setSmallIcon(R.mipmap.ic_launcher_round);
mBuilder.setContentTitle("Your Title");
mBuilder.setContentText("Your text");
mBuilder.setPriority(Notification.PRIORITY_MAX);
mBuilder.setStyle(bigText);

NotificationManager mNotificationManager =
        (NotificationManager) mContext.getSystemService(Context.NOTIFICATION_SERVICE);


if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
    NotificationChannel channel = new NotificationChannel("notify_001",
            "Channel human readable title",
            NotificationManager.IMPORTANCE_DEFAULT);
    mNotificationManager.createNotificationChannel(channel);
}

mNotificationManager.notify(0, mBuilder.build());
于 2017-12-29T08:45:48.137 回答