Save bitmap to location

前端 未结 19 2391
悲哀的现实
悲哀的现实 2020-11-22 00:20

I am working on a function to download an image from a web server, display it on the screen, and if the user wishes to keep the image, save it on the SD card in a certain fo

19条回答
  •  清酒与你
    2020-11-22 00:59

    Make sure the directory is created before you call bitmap.compress:

    new File(FileName.substring(0,FileName.lastIndexOf("/"))).mkdirs();
    

提交回复
热议问题