안드로이드 알림 사운드를 재생하는 방법
미디어 스트림을 통해 알림 사운드를 재생하지 않고 어떻게 알림 사운드를 재생할 수 있는지 궁금했습니다. 지금은 미디어 플레이어를 통해이 작업을 수행 할 수 있지만 미디어 파일로 재생하고 싶지 않고 알림이나 경고 또는 벨소리로 재생하고 싶습니다. 다음은 내 코드가 현재 어떻게 보이는지에 대한 예입니다.
MediaPlayer mp = new MediaPlayer();
mp.reset();
mp.setDataSource(notificationsPath+ (String) apptSounds.getSelectedItem());
mp.prepare();
mp.start();
누군가 여전히 이것에 대한 해결책을 찾고 있다면 Android에서 벨소리 / 알람 소리를 재생하는 방법에 대한 답변을 찾았습니다.
try {
Uri notification = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
Ringtone r = RingtoneManager.getRingtone(getApplicationContext(), notification);
r.play();
} catch (Exception e) {
e.printStackTrace();
}
TYPE_NOTIFICATION을 TYPE_ALARM (으)로 변경할 수 있지만 사용자가 버튼 등을 클릭 할 때 벨소리 r을 추적하여 재생을 중지하고 싶을 것입니다.
이제 소리를 따로 호출하지 않고 알림을 작성할 때 소리를 포함 시켜서이를 수행 할 수 있습니다.
//Define Notification Manager
NotificationManager notificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
//Define sound URI
Uri soundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(getApplicationContext())
.setSmallIcon(icon)
.setContentTitle(title)
.setContentText(message)
.setSound(soundUri); //This sets the sound to play
//Display notification
notificationManager.notify(0, mBuilder.build());
기본 알림 사운드를 재생하려면 클래스의 setDefaults (int) 메서드를 사용할 수 있습니다 NotificationCompat.Builder
.
NotificationCompat.Builder mBuilder =
new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.ic_notification)
.setContentTitle(getString(R.string.app_name))
.setContentText(someText)
.setDefaults(Notification.DEFAULT_SOUND)
.setAutoCancel(true);
나는 그것이 당신의 작업을 수행하는 가장 쉬운 방법이라고 생각합니다.
이 시도:
public void ringtone(){
try {
Uri notification = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
Ringtone r = RingtoneManager.getRingtone(getApplicationContext(), notification);
r.play();
} catch (Exception e) {
e.printStackTrace();
}
}
질문 이후 오랜 시간이 지났지 만 ... 오디오 스트림 유형을 설정해 보셨습니까?
mp.setAudioStreamType(AudioManager.STREAM_NOTIFICATION);
준비하기 전에 수행해야합니다.
나는 거의 같은 질문을했다. 몇 가지 연구를 한 후에 기본 시스템 "알림 사운드"를 재생하려면 알림을 표시하고 기본 사운드를 사용하도록 지시해야한다고 생각합니다. 알림 음을 재생하는 경우 알림 메시지도 표시해야한다는 다른 답변 중 일부에서 논쟁 할 내용이 있습니다.
However, a little tweaking of the notification API and you can get close to what you want. You can display a blank notification and then remove it automatically after a few seconds. I think this will work for me; maybe it will work for you.
I've created a set of convenience methods in com.globalmentor.android.app.Notifications.java
which allow you create a notification sound like this:
Notifications.notify(this);
The LED will also flash and, if you have vibrate permission, a vibration will occur. Yes, a notification icon will appear in the notification bar but will disappear after a few seconds.
At this point you may realize that, since the notification will go away anyway, you might as well have a scrolling ticker message in the notification bar; you can do that like this:
Notifications.notify(this, 5000, "This text will go away after five seconds.");
There are many other convenience methods in this class. You can download the whole library from its Subversion repository and build it with Maven. It depends on the globalmentor-core library, which can also be built and installed with Maven.
You can use Notification and NotificationManager to display the notification you want. You can then customize the sound you want to play with your notification.
Intent intent = new Intent(this, MembersLocation.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
intent.putExtra("type",type);
intent.putExtra("sender",sender);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0 /* Request code */, intent,
PendingIntent.FLAG_ONE_SHOT);
String channelId = getString(R.string.default_notification_channel_id);
Uri Emergency_sound_uri=Uri.parse("android.resource://"+getPackageName()+"/raw/emergency_sound");
// Uri Default_Sound_uri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
if(type.equals("emergency"))
{
playSound=Emergency_sound_uri;
}
else
{
playSound= Settings.System.DEFAULT_NOTIFICATION_URI;
}
NotificationCompat.Builder notificationBuilder =
new NotificationCompat.Builder(this, channelId)
.setSmallIcon(R.drawable.ic_notification)
.setContentTitle(title)
.setContentText(body)
.setSound(playSound, AudioManager.STREAM_NOTIFICATION)
.setAutoCancel(true)
.setColor(getColor(R.color.dark_red))
.setPriority(NotificationCompat.PRIORITY_HIGH)
.setContentIntent(pendingIntent);
// notificationBuilder.setOngoing(true);//for Android notification swipe delete disabling...
NotificationManager notificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
// Since android Oreo notification channel is needed.
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
NotificationChannel channel = new NotificationChannel(channelId,
"Channel human readable title",
NotificationManager.IMPORTANCE_HIGH);
AudioAttributes att = new AudioAttributes.Builder()
.setUsage(AudioAttributes.USAGE_NOTIFICATION)
.setContentType(AudioAttributes.CONTENT_TYPE_SPEECH)
.build();
channel.setSound(Emergency_sound_uri, att);
if (notificationManager != null) {
notificationManager.createNotificationChannel(channel);
}
}
if (notificationManager != null) {
notificationManager.notify(0 /* ID of notification */, notificationBuilder.build());
}
}
I think the concept of "notification sound" is someway wrong for Android UI.
The Android expected behaviour is to use the standard Notification to alert the user. If you play a notification sound without the status bar icon, you get the user confused ("what was that sound? there is no icon here, maybe I have hearing problems?").
How to set sound on a notification is, for example, here: Setting sound for notification
Set sound to notification channel
Uri alarmUri = Uri.fromFile(new File(<path>));
AudioAttributes attributes = new AudioAttributes.Builder()
.setUsage(AudioAttributes.USAGE_ALARM)
.build();
channel.setSound(alarmUri, attributes);
참고URL : https://stackoverflow.com/questions/4441334/how-to-play-an-android-notification-sound
'IT박스' 카테고리의 다른 글
모의 객체의 목적은 무엇입니까? (0) | 2020.06.05 |
---|---|
appcompat-v7의 툴바에서 제목 제거 (0) | 2020.06.04 |
문자열에서 모든 선행 공백을 어떻게 제거해야합니까? (0) | 2020.06.04 |
분할 문자열 배열의 마지막 요소 얻기 (0) | 2020.06.04 |
웹 사이트에 어떤 기술이 내장되어 있는지 어떻게 알 수 있습니까? (0) | 2020.06.04 |