需要在应用程序的通知构建器中设置优先级以及声音和震动等通知选项。
示例代码:
// 创建通知管理器 NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
// 创建通知构建器 NotificationCompat.Builder builder = new NotificationCompat.Builder(this) .setSmallIcon(R.drawable.notification_icon) .setContentTitle("My notification") .setContentText("Hello World!") .setPriority(NotificationCompat.PRIORITY_HIGH) // 设置通知重要性为高优先级 .setDefaults(Notification.DEFAULT_ALL); // 开启默认通知选项,包括声音和震动
// 发布通知 notificationManager.notify(0, builder.build());