Android:如何调用媒体播放器
我的SD卡里有很多歌曲。我想做的就是调用默认媒体播放器。我该怎么做?
我找到了调用媒体播放器并播放 1 首歌曲但不是 SD 卡中所有歌曲的方法。我还找到了一种在内存中播放歌曲而不是在SD卡中播放歌曲的方法。
有人可以帮助我或指导我一些教程吗?
提前致谢。
I have many songs in SD card. All I want to do is, just invoke the default media player. How can I do this??
I found methods to invoke media player and play 1 song but not all the songs in SD card. Also I found a method to play songs in the internal memory not the one in the SD card.
Can someone help me or direct me to some tutorial.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这里讨论了类似的问题:
使用 MediaPlayer 播放播放列表
显然,媒体播放器无法处理播放列表。因此,您应该尝试使用
setOnCompletionListener()
监听完成事件,并在此类事件发生时播放下一首歌曲。更多信息:
视频完成的监听器(或处理程序)
Similar problem is discussed here:
Play playlist with MediaPlayer
Apparently, media player cannot handle playlists. So you should try to listen for completion events using
setOnCompletionListener()
and play next song when such an event happens.More info:
Listener (or handler) for video finish