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.
当用户通过按 Series 60 中的挂断键退出应用程序时,我试图停止声音。但应用程序进入后台并且声音仍在播放。
当用户单击设备的挂断键时,我想停止声音。我调用了 的stop()方法Player。我还在 ; 处调用了该stop()方法hidNotify()。
stop()
Player
hidNotify()
{ Player p; p.start(); p.stop(); }
当用户退出时,AMS 调用(或应该调用)MIDlet 的 destroyApp() 方法。
尝试将您的 p.stop() 命令放在那里。(以及其他清理代码)。