打开 SD 卡上的文件
嘿,我想打开 SD 卡上的 .gif 文件。我在应用程序中使用了临时 .gif,它可以工作,但我需要打开 SD 卡上的原始文件,但它不允许我......任何人都可以帮忙吗?
有效的代码:http://pastebin.com/5kLvAG5c 我尝试使用的代码: http://pastebin.com/Q7t9QANQ
谢谢! :)
Hey, I want to open a .gif file on my sdcard. I used a temp .gif in the app and it works but I need to open the raw file on the sdcard and it is not letting me.... Can anyone help?
Code that works: http://pastebin.com/5kLvAG5c
Code Im trying to use: http://pastebin.com/Q7t9QANQ
Thank you! :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
IIRC,
openRawResource()
需要一个资源 ID。它不适用于文件路径。尝试替换
为
记住,您需要 sdcard 权限。
IIRC,
openRawResource()
needs a resource id. It doesn't work with filepaths.try replacing
with
Remember, you'll need sdcard permissions.
试试这个
这会将您的文件放入该字符串文件中。然后你继续你的代码......
Try this
This will get your file in that string file. Then you proceed with your code....