Dźwięk powiadomienia Androida

152

Użyłem nowszego kreatora NotificationCompat i nie mogę uzyskać powiadomienia, aby wydał dźwięk. Będzie wibrować i błyskać światłem. Dokumentacja Androida mówi, aby ustawić styl, z którym zrobiłem:

builder.setStyle(new NotificationCompat.InboxStyle());

Ale bez dźwięku?

Pełny kod:

NotificationCompat.Builder builder =  
        new NotificationCompat.Builder(this)  
        .setSmallIcon(R.drawable.ic_launcher)  
        .setContentTitle("Notifications Example")  
        .setContentText("This is a test notification");  


Intent notificationIntent = new Intent(this, MenuScreen.class);  

PendingIntent contentIntent = PendingIntent.getActivity(this, 0, notificationIntent,   
        PendingIntent.FLAG_UPDATE_CURRENT);  

builder.setContentIntent(contentIntent);  
builder.setAutoCancel(true);
builder.setLights(Color.BLUE, 500, 500);
long[] pattern = {500,500,500,500,500,500,500,500,500};
builder.setVibrate(pattern);
builder.setStyle(new NotificationCompat.InboxStyle());
// Add as notification  
NotificationManager manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);  
manager.notify(1, builder.build());  
James MV
źródło
12
builder.setSound (Settings.System.DEFAULT_NOTIFICATION_URI) również powinno działać
Zar E Ahmer

Odpowiedzi:

256

Czego brakowało w moim poprzednim kodzie:

Uri alarmSound = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
builder.setSound(alarmSound);
James MV
źródło
4
Ciągle gra i nie przestaje, jak sprawić, by dzwonił tylko raz? using builder.setOnlyOnce (true); nie pomaga
Salis
to jedyna gra
blackHawk
2
builder.setOnlyOnce (true) rozwiązał mój problem w moim przypadku!
ElOjcar,
155

Po prostu umieść plik dźwiękowy w Res\raw\siren.mp3folderze, a następnie użyj tego kodu:

Dźwięk niestandardowy:

Notification notification = builder.build();
notification.sound = Uri.parse("android.resource://"
            + context.getPackageName() + "/" + R.raw.siren);

Dla dźwięku domyślnego:

notification.defaults |= Notification.DEFAULT_SOUND;

W przypadku wibracji niestandardowych:

long[] vibrate = { 0, 100, 200, 300 };
notification.vibrate = vibrate;

W przypadku domyślnych wibracji:

notification.defaults |= Notification.DEFAULT_VIBRATE;
Mitul Goti
źródło
52

Inny sposób na domyślny dźwięk

builder.setDefaults(Notification.DEFAULT_SOUND);
Hayden
źródło
12

UŻYJ Can Codeding

 String en_alert, th_alert, en_title, th_title, id;
 int noti_all, noti_1, noti_2, noti_3, noti_4 = 0, Langage;

 class method
 Intent intent = new Intent(context, ReserveStatusActivity.class);
 PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent, 0);

 NotificationManager notificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);


 intent = new Intent(String.valueOf(PushActivity.class));
 intent.putExtra("message", MESSAGE);
 TaskStackBuilder stackBuilder = TaskStackBuilder.create(context);
 stackBuilder.addParentStack(PushActivity.class);
 stackBuilder.addNextIntent(intent);
 // PendingIntent pendingIntent =
 stackBuilder.getPendingIntent(0, PendingIntent.FLAG_UPDATE_CURRENT);

 //      android.support.v4.app.NotificationCompat.BigTextStyle bigStyle = new NotificationCompat.BigTextStyle();
 //        bigStyle.bigText((CharSequence) context);



 notification = new NotificationCompat.Builder(context)
    .setSmallIcon(R.mipmap.ic_launcher)
    .setContentTitle(th_title)
    .setContentText(th_alert)
    .setAutoCancel(true)

 // .setStyle(new Notification.BigTextStyle().bigText(th_alert)  ตัวเก่า
 //

 .setStyle(new NotificationCompat.BigTextStyle().bigText(th_title))

    .setStyle(new NotificationCompat.BigTextStyle().bigText(th_alert))

    .setContentIntent(pendingIntent)
    .setNumber(++numMessages)


    .build();

 notification.sound = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);

 notificationManager.notify(1000, notification);
Pong Petrung
źródło
10

Po prostu umieść poniższy prosty kod:

notification.sound = Uri.parse("android.resource://"
        + context.getPackageName() + "/" + R.raw.sound_file);

Dla dźwięku domyślnego:

notification.defaults |= Notification.DEFAULT_SOUND;
Denny Sharma
źródło
8

Musisz użyć RingtoneManager

private static final int MY_NOTIFICATION_ID = 1;
    private NotificationManager notificationManager;
    private Notification myNotification;

    private final String myBlog = "http://niravranpara.blogspot.com/";

Kod dla menedżera noficationmanagera z dzwonkiem alarmu można również ustawić dzwonek RingtoneManager.TYPE_RINGTONE

notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
                Intent myIntent = new Intent(Intent.ACTION_VIEW, Uri
                        .parse(myBlog));
                  PendingIntent pi = PendingIntent.getActivity(MainActivity.this, 0, myIntent, PendingIntent.FLAG_UPDATE_CURRENT);
                    Notification note = new Notification(R.drawable.ic_launcher, "Alarm", System.currentTimeMillis());
                    note.setLatestEventInfo(getApplicationContext(), "Alarm", "sound" + " (alarm)", pi);
                    Uri alarmSound = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_ALARM);
                    if(alarmSound == null){
                        alarmSound = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_RINGTONE);
                        if(alarmSound == null){
                            alarmSound = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
                        }
                    }
                    note.sound = alarmSound;
                    note.defaults |= Notification.DEFAULT_VIBRATE;
                    note.flags |= Notification.FLAG_AUTO_CANCEL;
                    notificationManager.notify(MY_NOTIFICATION_ID, note);
Nirav Ranpara
źródło
Przepraszamy, tak nie jest w przypadku nowszej wersji NotificationCompat.Builder.
James MV
Powiadomienie można utworzyć za pomocą funkcji NotificationCompat.Builder.build () i można pobrać wartość zwracaną przez build () i zmodyfikować jej wartości przed przekazaniem do NotificationManager.notify. To nie ma większego sensu, ale jest całkowicie OK.
holgac
6

Musisz użyć kreatora. setSound

Intent notificationIntent = new Intent(MainActivity.this, MainActivity.class);  

                PendingIntent contentIntent = PendingIntent.getActivity(MainActivity.this, 0, notificationIntent,   
                        PendingIntent.FLAG_UPDATE_CURRENT);  

                builder.setContentIntent(contentIntent);  
                builder.setAutoCancel(true);
                builder.setLights(Color.BLUE, 500, 500);
                long[] pattern = {500,500,500,500,500,500,500,500,500};
                builder.setVibrate(pattern);
                builder.setStyle(new NotificationCompat.InboxStyle());
                 Uri alarmSound = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_RINGTONE);
                    if(alarmSound == null){
                        alarmSound = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_RINGTONE);
                        if(alarmSound == null){
                            alarmSound = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
                        }
                    }

                // Add as notification  
                NotificationManager manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);  
             builder.setSound(alarmSound);
                manager.notify(1, builder.build());  
Nirav Ranpara
źródło
1
Napisałeś RingtoneManager.TYPE_RINGTONE dwa razy.
Bernardo Ferrari,
6

Możesz utworzyć funkcję:

public void playNotificationSound() 
{
    try
    {

        Uri alarmSound = `Uri.parse(ContentResolver.SCHEME_ANDROID_RESOURCE + "://" + MyApplication.getInstance().getApplicationContext().getPackageName() + "/raw/notification");`
        Ringtone r = RingtoneManager.getRingtone(MyApplication.getInstance().getApplicationContext(), alarmSound);
        r.play();
    }
    catch (Exception e) 
    {
        e.printStackTrace();
    }
}

Wywołaj tę funkcję, gdy otrzymasz powiadomienie.

Tutaj raw to folder w res, a powiadomienie to plik dźwiękowy w folderze raw.

MageNative
źródło
6

Na Oreo (Android 8) i nowszych należy to zrobić dla niestandardowego dźwięku w następujący sposób (kanały powiadomień):

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);
oksydowane
źródło
5

Najpierw umieść plik „yourmp3file” .mp3 w folderze raw (tj. W folderze Res)

2. miejsce w kodzie ...

Notification noti = new Notification.Builder(this)
.setSound(Uri.parse("android.resource://" + v.getContext().getPackageName() + "/" + R.raw.yourmp3file))//*see note

To jest to, co umieściłem w moim onClick (View v), ponieważ tylko "context (). GetPackageName ()" nie będzie działać z tego miejsca, ponieważ nie uzyska żadnego kontekstu

user3833732
źródło
4

W Android OREO lub nowszej wersji Po Zarejestruj kanał w systemie; nie możesz zmienić ważności ani innych zachowań powiadomień po tym samym kanale (przed odinstalowaniem aplikacji)wprowadź opis obrazu tutaj

private void createNotificationChannel() {
    // Create the NotificationChannel, but only on API 26+ because
    // the NotificationChannel class is new and not in the support library
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        CharSequence name = getString(R.string.channel_name);
        String description = getString(R.string.channel_description);
        int importance = NotificationManager.IMPORTANCE_HIGH;
        NotificationChannel channel = new NotificationChannel(CHANNEL_ID, name, importance);
        channel.setDescription(description);
        // Register the channel with the system; you can't change the importance
        // or other notification behaviors after this
        NotificationManager notificationManager = getSystemService(NotificationManager.class);
        notificationManager.createNotificationChannel(channel);
    }
}

channel.setSound(Settings.System.DEFAULT_NOTIFICATION_URI,audioAttributes);

Priorytet również ma znaczenie Najbardziej tutaj Ustaw priorytet powiadomień na wysoki za pomocą

Poziom ważności widoczny dla użytkownika (Android 8.0 i nowsze)

1) Pilne Wydaje dźwięk i pojawia się jako powiadomienie heads-up -> IMPORTANCE_HIGH
2) Wysoki Wydaje dźwięk -> IMPORTANCE_DEFAULT
3) Średni Brak dźwięku -> IMPORTANCE_LOW
4) Niski Brak dźwięku i nie pojawia się na pasku stanu -> IMPORTANCE_MIN

to samo działa w tej samej kolejności Priorytet (Android 7.1 i starsze)

1) PRIORITY_HIGH lub PRIORITY_MAX

2) PRIORITY_DEFAULT

3) PRIORITY_LOW

4) PRIORITY_MIN

Anaghan Akash
źródło
1
nie możesz zmienić ważności ani innych zachowań powiadomień po tym na tym samym kanale ”. Potrzebne do odinstalowania aplikacji, aby działała, ta czynność spowodowała usunięcie informacji o kanale z urządzenia.
Ely Dantas
1
notification.sound = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_RINGTONE);
Panie Castrovinci
źródło
1
private void showNotification() {

    // intent triggered, you can add other intent for other actions
    Intent i = new Intent(this, MainActivity.class);
    PendingIntent pIntent = PendingIntent.getActivity(this, 0, i, 0);

    //Notification sound
    try {
        Uri notification = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
        Ringtone r = RingtoneManager.getRingtone(getApplicationContext(), notification);
        r.play();
    } catch (Exception e) {
        e.printStackTrace();
    }

    // this is it, we'll build the notification!
    // in the addAction method, if you don't want any icon, just set the first param to 0
    Notification mNotification = null;
    if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.JELLY_BEAN) {

        mNotification = new Notification.Builder(this)

           .setContentTitle("Wings-Traccar!")
           .setContentText("You are punched-in for more than 10hrs!")
           .setSmallIcon(R.drawable.wingslogo)
           .setContentIntent(pIntent)
           .setVibrate(new long[] { 1000, 1000, 1000, 1000, 1000 })
           .addAction(R.drawable.favicon, "Goto App", pIntent)
           .build();

    }

    NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);

    // If you want to hide the notification after it was selected, do the code below
    // myNotification.flags |= Notification.FLAG_AUTO_CANCEL;

    notificationManager.notify(0, mNotification);
}

wywołaj tę funkcję w dowolnym miejscu. to działało dla mnie

mohammed shefeeq
źródło
0

przez instancję klasy Notification.builder (builder), która jest podana poniżej, możesz odtwarzać domyślny dźwięk przy powiadomieniu:

builder.setDefaults(Notification.DEFAULT_SOUND);
Vishal Sharma
źródło
0
Button btn;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_user);

    btn= findViewById(R.id.btn); 

   btn.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            notification();
        }
    });
  }   

private void notification () {

    NotificationCompat.Builder builder= new NotificationCompat.Builder(this);
    builder.setAutoCancel(true);
    builder.setContentTitle("Work Progress");
    builder.setContentText("Submit your today's work progress");
    builder.setSmallIcon(R.drawable.ic_email_black_24dp);
    Intent intent=new Intent(this, WorkStatus.class);
    PendingIntent pendingIntent= PendingIntent.getActivity(this, 1, intent, 
    PendingIntent.FLAG_UPDATE_CURRENT);
    builder.setContentIntent(pendingIntent);
    builder.setDefaults(Notification.DEFAULT_VIBRATE);
    builder.setDefaults(Notification.DEFAULT_SOUND);

    NotificationManager notificationManager= (NotificationManager) 
    getSystemService(NOTIFICATION_SERVICE);
    notificationManager.notify(1, builder.build());
}

Jest to pełne powiadomienie z dźwiękiem i wibracjami

Sachidanand Pandit
źródło
0

Nie zależy od konstruktora lub powiadomienia. Użyj niestandardowego kodu dla wibracji.

public static void vibrate(Context context, int millis){
    try {
        Vibrator v = (Vibrator) context.getSystemService(Context.VIBRATOR_SERVICE);
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
            v.vibrate(VibrationEffect.createOneShot(millis, VibrationEffect.DEFAULT_AMPLITUDE));
        } else {
            v.vibrate(millis);
        }
    }catch(Exception ex){
    }
}
Mahbubur Rahman Khan
źródło
-1

Możesz wykonać następujące czynności:

MediaPlayer mp;
mp =MediaPlayer.create(Activity_Order_Visor_Atender.this, R.raw.ok);         
mp.start();

Tworzysz pakiety między swoimi zasobami o nazwie raw i tam zachowujesz swoje dźwięki, a następnie po prostu to nazywasz.

Renán Gálvez
źródło
-1

// ustaw dźwięk powiadomienia (testowany do Androida 10)

builder.setDefaults(Notification.DEFAULT_VIBRATE);
//OR 
builder.setDefaults(Notification.DEFAULT_SOUND);
Mayuri Khinvasara
źródło