我到处都在寻找如何在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
所以..如果有人知道如何播放默认铃声/警报,请告诉我。
我不想上传任何文件。只需播放默认铃声即可。