Hallo.
Ich spiele mich soeben mit Notifications herum. Allerdings bekomme ich meine eigenen Sounds nicht wirklich zum laufen.
hier mal mein Code:
Java
nm = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
Notification n = new Notification();
if (x == 1){
n.sound = Uri.parse("android.resource://com.meineapp.test/raw/meinmp3");
} else if (x == 2){
n.defaults = Notification.DEFAULT_ALL;
}
nm.notify(uniqueID, n);
Das standard gezwitschere funktioniert tadellos. Nur mein eigener Sound will sich nicht abspielen lassen...
Kann mir mal jemand einen Hinweis geben was mir hier fehlt?
Danke. LG