详解Android 视频播放时停止后台运行的方法
程序员文章站
2023-12-13 12:29:40
详解android 视频播放时停止后台运行的方法
在项目中,遇到了视频播放,可是后台播放的音乐也同时播放,我们要的效果肯定是视频播放的时候,音乐暂停,视频播放完了我们就继...
详解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和abandonaudiofocus log.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; }
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!