Custom notification sound , android Oreo?

前端 未结 3 576
庸人自扰
庸人自扰 2020-12-09 18:12

I want to set a custom notification sound from a raw mp3 or wav file in my app. Below is my code

private void sendMyNotification(String message) {
    Intent         


        
相关标签:
3条回答
  • 2020-12-09 18:24

    Late but might be helpful to some one, just add below line in your NotificationCompat.Builder() instance:

    .setSound("your sound uri",AudioManager.STREAM_NOTIFICATION)
    

    Note: As NotificationCompat.Builder() is backward compatible , so AudioAttributes etc in notification channel is not required

    0 讨论(0)
  • 2020-12-09 18:28
    • Tested blow code and worked with me as expected.

    • Add Content intent and that still working without any issues with me.

      private void sendMyNotification(String message) {
      
      Intent intent = new Intent(this, SplashActivity.class);
      intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
      PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, PendingIntent.FLAG_ONE_SHOT);
      
      Uri soundUri = Uri.parse("android.resource://" + getApplicationContext().getPackageName() + "/" + R.raw.correct_answer);
      NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this, "CH_ID")
              .setSmallIcon(R.mipmap.ic_launcher)
              .setContentTitle(getString(R.string.app_name))
              .setContentText(message)
              .setAutoCancel(true)
              .setSound(soundUri)
              .setContentIntent(pendingIntent);
      
      NotificationManager mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
      if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) {
      
          if(soundUri != null){
              // Changing Default mode of notification
              notificationBuilder.setDefaults(Notification.DEFAULT_VIBRATE);
              // Creating an Audio Attribute
              AudioAttributes audioAttributes = new AudioAttributes.Builder()
                      .setContentType(AudioAttributes.CONTENT_TYPE_SONIFICATION)
                      .setUsage(AudioAttributes.USAGE_ALARM)
                      .build();
      
              // Creating Channel
              NotificationChannel notificationChannel = new NotificationChannel("CH_ID","Testing_Audio",NotificationManager.IMPORTANCE_HIGH);
              notificationChannel.setSound(soundUri,audioAttributes);
              mNotificationManager.createNotificationChannel(notificationChannel);
          }
      }
      mNotificationManager.notify(0, notificationBuilder.build());
      }
      

    Update

    • You may need uninstall the app to alter sound settings, Check out these link for more details.
    0 讨论(0)
  • 2020-12-09 18:47

    Simple answer:

    Uri soundUri = Uri.parse(
                             "android.resource://" + 
                             getApplicationContext().getPackageName() +
                             "/" + 
                             R.raw.push_sound_file);
    
    AudioAttributes audioAttributes = new AudioAttributes.Builder()
                .setContentType(AudioAttributes.CONTENT_TYPE_SONIFICATION)
                .setUsage(AudioAttributes.USAGE_ALARM)
                .build();
    
    // Creating Channel
    NotificationChannel channel = new NotificationChannel("YOUR_CHANNEL_ID",
                                                          "YOUR_CHANNEL_NAME",
                                                          NotificationManager.IMPORTANCE_HIGH);
    channel.setSound(soundUri, audioAttributes);
    
    ((NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE))
                                               .createNotificationChannel(notificationChannel);
    
    0 讨论(0)
提交回复
热议问题