web-dev-qa-db-fra.com

Comment ajouter un son de notification personnalisé dans Android

Je dois gérer la notification et pour cela, je dois gérer le son personnalisé quand il vient. Alors, avez-vous une idée de comment nous pouvons y arriver?

J'ai déjà copié le fichier audio dans mon dossier brut, donc tout le monde a des idées sur la façon de l'implémenter dans mon projet.

Merci d'avance.

13
Parth Bhayani

Tout d'abord, créez le dossier dans Resource (res), nommez-le raw et placez-y le fichier (YOUR_SOUND_FILE.MP3) et utilisez les lignes de code ci-dessous pour un son personnalisé

   NotificationManager notificationManager = (NotificationManager) context
            .getSystemService(Context.NOTIFICATION_SERVICE);
    Notification notification = new Notification(icon, message, when);

    String title = context.getString(R.string.app_name);

    Intent notificationIntent = new Intent(context,
            SlidingMenuActivity.class);
    notificationIntent.putExtra("isInbox", true);
    // set intent so it does not start a new activity
    notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP
            | Intent.FLAG_ACTIVITY_SINGLE_TOP);
    PendingIntent intent = PendingIntent.getActivity(context, 0,
            notificationIntent, 0);
    notification.setLatestEventInfo(context, title, message, intent);
    notification.flags |= Notification.FLAG_AUTO_CANCEL;

tilisez ces lignes de code pour un son personnalisé

 notification.sound =Uri.parse("Android.resource://"+context.getPackageName()+"/"+R.raw.FILE_NAME);//Here is FILE_NAME is the name of file that you want to play


    // Vibrate if vibrate is enabled
    notification.defaults |= Notification.DEFAULT_VIBRATE;
    notificationManager.notify(0, notification);

MODIFIER LA MISE À JOUR

Pour l'Oreo et les versions supérieures, vous devez vérifier la SDK_VERSION et utiliser la méthode setSound de la NotificationChannel

Uri sound = Uri.parse(ContentResolver.SCHEME_Android_RESOURCE + "://" + context.getPackageName() + "/" + R.raw.FILE_NAME);  //Here is FILE_NAME is the name of file that you want to play

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {

            NotificationChannel mChannel = new NotificationChannel("YOUR_CHANNEL_ID",
                "YOUR CHANNEL NAME",
                NotificationManager.IMPORTANCE_DEFAULT)

            AudioAttributes attributes = new AudioAttributes.Builder()
                    .setUsage(AudioAttributes.USAGE_NOTIFICATION)
                    .build();

            NotificationChannel mChannel = new NotificationChannel(CHANNEL_ID, 
                    context.getString(R.string.app_name),
                    NotificationManager.IMPORTANCE_HIGH);

            // Configure the notification channel.
            mChannel.setDescription(msg);
            mChannel.enableLights(true);
            mChannel.enableVibration(true);
            mChannel.setSound(sound, attributes); // This is IMPORTANT


            if (mNotificationManager != null)
                mNotificationManager.createNotificationChannel(mChannel);
        }
26
Ravindra Kushwaha
Intent i = new Intent(this, MainActivity.class);
PendingIntent pi = PendingIntent.getActivity(this, 0, i, PendingIntent.FLAG_CANCEL_CURRENT);

NotificationCompat.Builder builder = new NotificationCompat.Builder(this)
    .setContentTitle("I want food")
    .setContentText(notificationcontent)
    .setSmallIcon(R.drawable.ic_launcher)
    .setContentIntent(pi)
    .setAutoCancel(true)
    .setDefaults(Notification.FLAG_ONLY_ALERT_ONCE);
NotificationManager manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
MediaPlayer mp= MediaPlayer.create(contexto, R.raw.your_sound);
mp.start();
manager.notify(73195, builder.build());
6
Sheychan