Android:文件输入和输出USB/SD卡
有人可以指出我正确的方向吗?我已经用谷歌搜索了很长时间,但没有得到很好的结果。
我希望我的应用程序允许用户从 USB/SD 卡下载文件。具体来说是一张图像,稍后会在我的应用程序中使用。
我似乎找不到任何东西,一直在寻找打开的文件对话框,但什么也没找到。
所以:
1)用户插入 USB 设备/SDCard。 2) 用户获取文件浏览器对话框。 3) 用户从USB/SDCard中查找图像 4) 应用程序抓取图像并将其存储以供以后使用。
谢谢 :)
Can someone please point me in the right direction. I have been googling for ages and I'm not getting great results.
I want my app to allow the user to download a file from the USB/SDcard. Specifically an image, which then later gets used in my app.
I can't seem to find anything, been searching for open file dialogs and nothing..
So:
1) User inserts USB device/SDCard.
2) User gets file browser dialog.
3) User finds image from USB/SDCard
4) App grabs image and stores it for later use.
Thanks :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为您正在寻找的是如何在 Android 中使用外部存储。 android网站有一个非常好的教程: http://developer .android.com/guide/topics/data/data-storage.html#filesExternal。希望这有帮助。
I think what you are looking for is how to work with external storage in Android. there is a very good tutorial from android site: http://developer.android.com/guide/topics/data/data-storage.html#filesExternal. hope this helps.
要浏览 SDCard 上的图像,此线程非常有用:
如何从图库(SD 卡)中为我的应用程序选择图像?
我建议使用 Android Gallery 界面来获取图像,因为这对用户来说比浏览文件要容易得多。
To browse for images on the SDCard this thread is very helpful:
How to pick an image from gallery (SD Card) for my app?
I would suggest using the Android Gallery interface for images as it is much easier for the user than browsing files.