Android,在第一个 Activity 上加载 mp3,并在下面的 Activity 上访问它
有没有办法在活动 1 中将 MP3 文件加载到声音池中,然后在活动 5 中进一步访问它?
我一直在尝试这个但没有成功。
这当然是为了减少加载时间,并在各处使用相同的文件,而无需一遍又一遍地加载它们,
谢谢! 瑞安
Is there a way to load a MP3 file into the soundpool in activity 1, then access it further down in activity 5?
I have been trying this with no success.
This is of course to cut down on load times and use the same files all over the place without loading them over and over and over again
Thanks!
Ryan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用相关服务。
无论活动状态如何,服务都可以在后台运行。
看一下这里
就可以在服务中初始化soundpool并访问它通过您的活动。
You can use services for that matter.
Services can run in the background regardless of activities states.
Take a look here
You can initialize the soundpool in the service and access it via your activities.