Android:按“主页”或“后退”按钮停止播放
当我在应用程序中按“返回”或“主页”时,它会隐藏,但 MediaPlayer 会继续运行。有没有办法知道这些按钮何时被按下并在关闭之前停止播放?
When I press back or home in my application, it hides, but the MediaPlayer keeps going. Is there a way to know when these buttons have been pressed and stop playback before closing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需在媒体播放器调用的类中实现此方法...
just implement this method in your class where media player is calling...
您应该能够重写
Activity
中的onPause()
函数。当您隐藏Activity
时,将调用onPause()
,并且您可以在那里暂停MediaPlayer
。例如,
You should be able to override the
onPause()
function in yourActivity
.onPause()
will be called when youActivity
is hidden and you can pause theMediaPlayer
there.For example,
不要忘记添加 super.onPause;如果忘记的话会导致 FC。
Don't forget to add super.onPause; if you forget it will cause a FC.