当应用程序对用户不可见时如何停止背景音乐
当应用程序对用户可见时,我需要仅为应用程序播放连续的背景音乐。
仅当应用程序进入后台或终止时它才会停止。
我怎样才能做到这一点?
I need to play a continuous background music for application only when application is visible to the user.
It stops only when application is goes background or terminated.
How can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
当应用程序从用户视图中删除时,将调用您可以在 Activity 中重写的 onPause() 方法。
将停止音乐所需的任何代码放入该方法中,您可以确保当用户按“后退”或“主页”时会调用它。
请参阅此处了解 Activity 生命周期:
http://developer.android.com/reference/ android/app/Activity.html
The onPause() method that you can override in your activity will be called when the application is removed from the user's view.
Place whatever code you need to stop the music within that method, and you can be sure it will be called when the user presses 'back' or 'home'.
See here for the activity lifecycle:
http://developer.android.com/reference/android/app/Activity.html
您可以使用 Activity 类的
onPause()
方法来停止背景音乐。当应用程序恢复时,您可以使用
onResume()
再次启动它。请参阅:http://developer.android.com/reference /android/app/Activity.html#onPause%28%29
You can use the
onPause()
-Method of the Activity-Class to stop the background-music.When the app gets resumed you have start it again with
onResume()
.See: http://developer.android.com/reference/android/app/Activity.html#onPause%28%29
使用 onPause() 不是一个好的解决方案,因为当您打开另一个活动时,当您的应用程序可见时,将调用前一个活动的 onPause() !
这是你应该做的:
创建一个应用程序类并重写 onTrimMemory() 方法:
不要忘记在 Manifest.xml 中定义此类:
Using onPause() is not a good solution because when you open another activity the onPause() of previous activity will be called while your app is visible!
this is what you should do:
Create an application class and override onTrimMemory() method:
do not forget to define this class in Manifest.xml: