如何隐藏主屏幕上方的一个活动屏幕(对话框主题活动)并在后台运行隐藏活动?
我的项目有两个屏幕,其中活动 A 和活动 B。
活动 A 显示全屏并包含一些内容,活动 B 显示音频播放器。
我需要当用户最小化播放器然后播放器屏幕 Activity B 隐藏并在后台播放音频。仅显示活动屏幕...
请检查这些链接
http://screencast.com/t/BM7GrVAli5E2
有人可以建议我怎么可能吗?
谢谢
My Project have two Screen in which Activity A and Activity B.
Activity A show full screen with some content and activity B show audio player.
i need to when user minimize the player then player screen Activity B hide and play audio in background. Show only A activity Screen...
Please check demo screen layout on these link
http://screencast.com/t/BM7GrVAli5E2
can anyone suggest me how its possible ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不要使用 Activity B,而是使用 android.widget.PopupWindow
Instead of using Activity B, use android.widget.PopupWindow
您的 ActivityB 应充当服务的远程命令,该服务将实际处理音乐播放。
请参阅有关实现媒体播放器服务的教程:
http://www.helloandroid.com/tutorials/musicdroid-audio-player -第二部分
Your ActivityB should act like a remote command for a Service which will actually handle the music playing.
See this tutorial about implementing a mediaplayer service:
http://www.helloandroid.com/tutorials/musicdroid-audio-player-part-ii