Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将如何将可绘制对象保存到 SD 卡(自定义文件夹)并稍后检索它,假设我跟踪保存项目的路径。
谢谢,费萨尔
我假设您想从 Internet 下载图像?
您可以FileOutputStream用来保存图像,也可以用来File.mkdirs()在 SD 卡上创建自定义目录。
FileOutputStream
File.mkdirs()
如果要稍后加载图像,可以使用BitmapFactory.decodeFile(String pathName).
BitmapFactory.decodeFile(String pathName)