列出 Android 设备上的所有一种文件类型?
例如,我想检索内部和外部存储上所有 .mp3 文件的列表。我还想要每个 .mp3 文件的路径(String
)以供参考(将它们存储在 List
中?)我该怎么做?这是一个相对昂贵的操作吗?如果是这样,是否应该将其放在一个线程上,并在运行时向用户显示“正在加载”ProgressDialog
?
For example, I want to retrieve a list of all .mp3 files on the internal AND external storage. I would also like the path (String
) of each .mp3 file for reference (store them in a List
?) How could I do this? Is this a relatively expensive operation? If so, should it be put on a thread and while that is running, present the user with a "Loading" ProgressDialog
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请找到下面的函数。它将获取存储在外部和内部存储器中的所有 mp3 文件。
Please find the function below . It will get all the mp3 files stored in external and Internal memory .