我想为Android开发一个具有多任务处理功能的音乐播放器应用程序,这样我就可以使用不同的应用程序而无需关闭音乐播放器......请帮忙
我想为Android开发一个具有多任务处理功能的音乐播放器应用程序,这样我就可以使用不同的应用程序而无需关闭音乐播放器......请帮忙......
I want to develop an music player app for android with multitasking so dat i can use differtent apps without closing music player......help out plzz..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要让它继续在后台播放音乐,您的应用程序需要两个组件。一个 Activity 组件将显示一个 UI 来控制音乐播放器,以及一个正在播放音乐的 Service 组件。 Activity 组件控制Service 组件。
请参阅此处了解更多详细信息:
http://developer.android.com/guide/topics/fundamentals .html
To have it to continue to play music in the background, you will need two components to your app. An Activity component that will display a UI to control the music player, and a Service component which is playing the music. The Activity component controls the Service component.
See here for more details:
http://developer.android.com/guide/topics/fundamentals.html