读书人

播发默认铃声

发布时间: 2012-09-04 14:19:30 作者: rapoo

播放默认铃声

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();  }


会出现 Couldn't open fd for content://settings/system/ringtone但是在真机上是可以的

读书人网 >移动开发

热点推荐