当应用程序对用户不可见时如何停止背景音乐

发布于 2024-12-03 02:21:27 字数 121 浏览 2 评论 0原文

当应用程序对用户可见时,我需要为应用程序播放连续的背景音乐。

仅当应用程序进入后台或终止时它才会停止。

我怎样才能做到这一点?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

节枝 2024-12-10 02:21:27

当应用程序从用户视图中删除时,将调用您可以在 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

朱染 2024-12-10 02:21:27

您可以使用 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

小忆控 2024-12-10 02:21:27

使用 onPause() 不是一个好的解决方案,因为当您打开另一个活动时,当您的应用程序可见时,将调用前一个活动的 onPause() !

这是你应该做的:
创建一个应用程序类并重写 onTrimMemory() 方法:

public class App extends Application {

@Override
public void onTrimMemory(int level) {
    super.onTrimMemory(level);
    if (level == ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) { // Works for Activity
        //implement your code for stopping music
    }
    else if (level == ComponentCallbacks2.TRIM_MEMORY_COMPLETE) { // Works for FragmentActivty
         //implement your code for stopping music
    }
}
}

不要忘记在 Manifest.xml 中定义此类:

        android:name=".App" //add this line in application tag of Manifest file

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:

public class App extends Application {

@Override
public void onTrimMemory(int level) {
    super.onTrimMemory(level);
    if (level == ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN) { // Works for Activity
        //implement your code for stopping music
    }
    else if (level == ComponentCallbacks2.TRIM_MEMORY_COMPLETE) { // Works for FragmentActivty
         //implement your code for stopping music
    }
}
}

do not forget to define this class in Manifest.xml:

        android:name=".App" //add this line in application tag of Manifest file
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文