如何在 Android 中播放铃声/闹钟声音

我一直在到处寻找如何在 Android 中播放铃声/闹钟声音。

我按下一个按钮,我想播放铃声/警报声。我找不到一个简单直接的样本。是的,我已经看了闹钟的源代码... 但它不是简单的,我不能编译它。

我做不到:

Uri alert = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_ALARM);
mMediaPlayer = new MediaPlayer();
mMediaPlayer.setDataSource(this, alert);
final AudioManager audioManager = (AudioManager)getSystemService(Context.AUDIO_SERVICE);


if (audioManager.getStreamVolume(AudioManager.STREAM_ALARM) != 0) {
player.setAudioStreamType(AudioManager.STREAM_ALARM);
player.setLooping(true);
player.prepare();
player.start();
}

我得到了这个错误:

04-11 17:15:27.638: ERROR/MediaPlayerService(30): Couldn't open fd for
content://settings/system/ringtone

所以. . 如果有人知道如何播放默认铃声/闹钟请让我知道。

我不喜欢上传任何文件。只是播放默认铃声。

239310 次浏览

你的例子基本上就是我要用的。但是,它从来不能在模拟器上工作,因为模拟器默认没有任何铃声,而且 content://settings/system/ringtone不能解析成任何可播放的东西。它在我的手机上运行得很好。

你可以使用 DDMS 把一个 MP3文件放到你的/sdcard 文件夹中,重新启动模拟器,然后打开媒体应用程序,浏览到你的 MP3文件,长按并选择“用作手机铃声”。

错误消失了!

编辑: 使用 Ringdroid 应用程序解决通知声音(例如 SMS)的同样问题

复制一个音频文件到模拟器的 sd 卡,并通过媒体播放器选择它作为默认的铃声确实解决了这个问题。

如果用户从未在手机上设置警报,TYPE _ ALARM 可以返回 null。你可以这样解释:

Uri alert = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_ALARM);


if(alert == null){
// alert is null, using backup
alert = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);


// I can't see this ever being null (as always have a default notification)
// but just incase
if(alert == null) {
// alert backup is null, using 2nd backup
alert = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_RINGTONE);
}
}

你可以简单地用这个来播放设置好的铃声:

Uri notification = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
Ringtone r = RingtoneManager.getRingtone(getApplicationContext(), notification);
r.play();

这种方法很有效:

AudioManager audioManager = (AudioManager) getSystemService(Context.AUDIO_SERVICE);
MediaPlayer thePlayer = MediaPlayer.create(getApplicationContext(), RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION));


try {
thePlayer.setVolume((float) (audioManager.getStreamVolume(AudioManager.STREAM_NOTIFICATION) / 7.0)),
(float) (audioManager.getStreamVolume(AudioManager.STREAM_NOTIFICATION) / 7.0)));
} catch (Exception e) {
e.printStackTrace();
}


thePlayer.start();

我就是这么做的:

Uri notification = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
MediaPlayer mp = MediaPlayer.create(getApplicationContext(), notification);
mp.start();

它类似于 markov00的方式,但是使用 MediaPlayer 而不是 Ringtone 来防止打断其他声音,比如音乐,这些声音可能已经在后台播放了。

下面是一些示例代码:

Uri notification = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
MediaPlayer mediaPlayer = MediaPlayer.create(getApplicationContext(), notification);
mediaPlayer.start();

您可以使用下面的示例代码:

Uri ringtoneUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_ALARM);
Ringtone ringtoneSound = RingtoneManager.getRingtone(getApplicationContext(), ringtoneUri)


if (ringtoneSound != null) {
ringtoneSound.play();
}
public class AlarmReceiver extends WakefulBroadcastReceiver {


@Override
public void onReceive(final Context context, Intent intent) {
//this will update the UI with message
Reminder inst = Reminder.instance();
inst.setAlarmText("");


//this will sound the alarm tone
//this will sound the alarm once, if you wish to
//raise alarm in loop continuously then use MediaPlayer and setLooping(true)
Uri alarmUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_ALARM);
if (alarmUri == null) {
alarmUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_RINGTONE);
}
Ringtone ringtone = RingtoneManager.getRingtone(context, alarmUri);
ringtone.play();


//this will send a notification message
ComponentName comp = new ComponentName(context.getPackageName(),
AlarmService.class.getName());
startWakefulService(context, (intent.setComponent(comp)));
setResultCode(Activity.RESULT_OK);
}
}

对于未来的谷歌用户: 使用 RingtoneManager.getActualDefaultRingtoneUri()而不是 RingtoneManager.getDefaultUri()。根据它的名字,它会返回实际的 uri,所以你可以自由使用它。来自 getActualDefaultRingtoneUri()的文档:

获取当前默认声音的 Uri。这将提供 实际声音 Uri,大多数客户端可以使用 DEFAULT _ RINGTONE _ URI 代替这个。

与此同时,getDefaultUri()表示:

返回特定类型的默认铃声的 Uri。而不是返回实际的铃声的声音 Uri,这将返回的 符号 Uri 将解析为实际的声音时发挥。

现在可能有点晚了,但是有一个新的简单的方法可以解决这个问题。
在科特林

import android.provider.Settings
val player = MediaPlayer.create(this,Settings.System.DEFAULT_RINGTONE_URI)
player.start()

以上代码将播放默认铃声,但如果你想要默认警报,更改

设置. System.DEFAULT _ RINGTONE _ URI

设置. System.DEFAULT _ ALARM _ ALERT _ URI

您可以使用以下代码;

val ringtoneUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_RINGTONE)
// for alarm
// val ringtoneUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_ALARM)
val ringtoneSound: Ringtone = RingtoneManager.getRingtone(requireContext(), ringtoneUri)
ringtoneSound.play()

停车;

ringtoneSound.stop()