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.
为什么要在 Android 中使用 service 来播放背景音乐?为什么我不只是创建另一个媒体播放器对象循环播放器来播放音乐?
谢谢!
关键字是background. 如果您将您的媒体播放器对象绑定到一个活动,则您无法保证如果您的活动进入后台,您的对象就会存在。当资源不足时,GC 会销毁它。 因此使用服务更安全。与活动不同,服务被设计为在后台运行。
background