如何在 SDK 中浏览 Android 图库中的电影/媒体文件
谁能告诉我如何从 android 文件夹(手机/SD 卡内存)浏览电影文件。假设我的手机内存中有一个电影文件,我想从我的应用程序访问它,最好的方法是什么?
请帮我。
Can anybody tell me how to browse for a movie file from the android folders (either phone/SD Card memory). Let's say I got a movie file on the phone memory and I want to access it from my application, what is the best way to do it?
Please help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你需要使用
Intent Intent = new Intent(MediaStore.INTENT_ACTION_MEDIA_SEARCH);
我不确定,但我希望这能让您在正确的轨道上找到
此类的链接
http://developer.android.com/reference/android/provider/MediaStore.html#INTENT_ACTION_MEDIA_SEARCH
I think you need to use
Intent intent = new Intent(MediaStore.INTENT_ACTION_MEDIA_SEARCH);
I'm not sure but I hope this put you in the right track
here the link for this class
http://developer.android.com/reference/android/provider/MediaStore.html#INTENT_ACTION_MEDIA_SEARCH