Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图从 url 流式传输音频并且它工作正常。当我退出应用程序时,该 url 也在后台播放。但是当我再次进入我的应用程序时我无法停止它我怎么能停止。帮助表示赞赏。
把它放在你的主要活动中(或者你放置播放器的任何地方):
protected void onPause() { super.onPause(); // Put your media player object here mp.pause(); }
每当您离开活动时,这应该会停止您的音乐。
在您的 onBackPressed 方法中写入 mp.stop() 然后 mp=null 其中 mp 是您的媒体播放器实例...