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.
我目前正在使用 eclipse 开发一个 android 应用程序。基本上当按下主页按钮时,应用程序会自动调用 onPause() 方法。在 onPause() 中,我放置了暂停背景音乐的方法。再次打开应用程序时,我想输入播放音乐的方法,但我不知道该放在哪里。任何人都知道在重新打开应用程序时将我们想要调用的方法放在哪里?
任何人都知道在重新打开应用程序时将我们想要调用的方法放在哪里
你必须把它放在onResume()方法中。
onResume()
看一下 Activity 生命周期: