如何在没有声音java的情况下显示通知
2022-08-31 23:45:43
如何发出在构建时不发出声音的通知?我正在构建通知,我的用户不喜欢它发出声音的事实。
如何将其更改为静音/完全没有声音?
如何显示通知:
android.support.v7.app.NotificationCompat.Builder builder = new android.support.v7.app.NotificationCompat.Builder(main);
builder.setStyle(new android.support.v7.app.NotificationCompat.BigTextStyle().bigText(text));
builder.setSmallIcon(R.drawable.app);
builder.setContentTitle("Rooster Maandag:");
builder.setOngoing(false);
builder.setAutoCancel(true);
builder.setSilent(true);
builder.setDefaults(Notification.DEFAULT_ALL);
builder.setVisibility(NotificationCompat.VISIBILITY_PUBLIC);
builder.setPriority(NotificationCompat.PRIORITY_DEFAULT);
notificationManager = (NotificationManager) main.getSystemService(main.NOTIFICATION_SERVICE);
notificationManager.notify(NOTIFICATION_ID, builder.build());
我试图在谷歌上搜索,但我得到的唯一结果是如何播放声音,而不是如何不播放声音......
编辑在某些人眼中,它可能是重复的,但是在我的眼中,我无法找到指定默认值的替代方案,而这种新方法称为setDefaults。