[Android] 停止、恢复 背景音乐的播放

在执行录音操作时,我们希望可以将酷狗等后台播放的音乐停掉,在录音完成后再恢复播放,可以使用以下代码:

/**@param bMute 值为true时为关闭背景音乐。*/@TargetApi(Build.VERSION_CODES.FROYO)public static boolean muteAudioFocus(Context context, boolean bMute) {if(context == null){Log.d("ANDROID_LAB", "context is null.");return false;}if(!VersionUtils.isrFroyo()){// 2.1以下的版本不支持下面的API:requestAudioFocus和abandonAudioFocusLog.d("ANDROID_LAB", "Android 2.1 and below can not stop music");return false;}boolean bool = false;AudioManager am = (AudioManager)context.getSystemService(Context.AUDIO_SERVICE);if(bMute){int result = am.requestAudioFocus(null,AudioManager.STREAM_MUSIC,AudioManager.AUDIOFOCUS_GAIN_TRANSIENT);bool = result == AudioManager.AUDIOFOCUS_REQUEST_GRANTED;}else{int result = am.abandonAudioFocus(null);bool = result == AudioManager.AUDIOFOCUS_REQUEST_GRANTED;}Log.d("ANDROID_LAB", "pauseMusic bMute="+bMute +" result="+bool);return bool;}

版权声明:本文为博主原创文章,,未经博主允许不得转载。

但要相信真诚的爱情,对爱情永远怀有单纯的向往。

[Android] 停止、恢复 背景音乐的播放

相关文章:

你感兴趣的文章:

标签云: