我想获取 SD 卡中的音频文件
在我的应用程序中,我想在接到来电时设置铃声
...如何打开SDCARD
并获取音频文件和列表它..如何获取所选音频文件
的URI
..
In my app I want to set the ringtone
when I get an incoming call... How to open the SDCARD
and get audio files and list it.. How to get the URI
for the selected audio file
..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MediaScanner 为您查找音乐,填充 MediaStore 数据库。下面是一些查找音乐条目的代码:
“数据”字段包含一个可与 MediaPlayer 一起使用的句柄。第一次执行此媒体文件扫描和索引时,使用 AsyncTask 进行扫描,但稍后当收到意图时,使用服务进行扫描。
MediaScanner finds music for you, populating the MediaStore database. Here's some code to look up a music entry:
The "data" field contains a handle you can use with MediaPlayer. while doing this media files scanning and indexing for the first time, scan it using a AsyncTask, but later when a intent is received do it using a service.