要在Android中显示声音通知,您可以使用NotificationCompat.Builder类来创建和管理通知。以下是一个包含代码示例的解决方法:
// 创建通知渠道(仅适用于Android 8.0及更高版本)
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
// 定义渠道ID和名称
String channelId = "channel_id";
String channelName = "Channel Name";
// 定义渠道重要性级别
int importance = NotificationManager.IMPORTANCE_DEFAULT;
// 创建通知渠道
NotificationChannel channel = new NotificationChannel(channelId, channelName, importance);
// 设置通知渠道的描述
channel.setDescription("Channel description");
// 在通知管理器中创建通知渠道
NotificationManager notificationManager = getSystemService(NotificationManager.class);
notificationManager.createNotificationChannel(channel);
}
// 创建通知
NotificationCompat.Builder builder = new NotificationCompat.Builder(this, "channel_id")
.setSmallIcon(R.drawable.notification_icon)
.setContentTitle("Notification Title")
.setContentText("Notification Text")
.setPriority(NotificationCompat.PRIORITY_DEFAULT)
.setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION))
.setVibrate(new long[] { 0, 1000, 1000, 1000, 1000 }) // 设置振动模式(仅在有振动权限时生效)
.setAutoCancel(true); // 单击通知后自动取消通知
// 显示通知
NotificationManagerCompat notificationManager = NotificationManagerCompat.from(this);
notificationManager.notify(notificationId, builder.build());
请注意,上述代码假设您已经拥有一个资源文件(res)中的通知图标(notification_icon)。
以上代码将创建一个通知,并在默认通知声音下播放声音。还可以使用setVibrate方法设置通知的振动模式。通过设置setAutoCancel为true,点击通知后将自动取消通知。
此外,如果您的应用程序的目标SDK版本为26或更高版本,并且您希望在Android 8.0及更高版本上显示通知,您还需要创建并配置一个通知渠道。