我一直在到处寻找如何在 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
所以. . 如果有人知道如何播放默认铃声/闹钟请让我知道。
我不喜欢上传任何文件。只是播放默认铃声。