Android实现保存图片到本地并在相册中显示
程序员文章站
2022-07-21 15:13:35
android中拍照保存图片到本地是常见的一种需求,之前碰到了一个问题,就是在4.4中,刷新相册会出现anr,经过一番百度解决了这个问题。
首先是保存图片到本地...
android中拍照保存图片到本地是常见的一种需求,之前碰到了一个问题,就是在4.4中,刷新相册会出现anr,经过一番百度解决了这个问题。
首先是保存图片到本地
private static final string save_pic_path = environment.getexternalstoragestate().equalsignorecase(environment.media_mounted) ? environment.getexternalstoragedirectory().getabsolutepath() : "/mnt/sdcard";//保存到sd卡 private static final string save_real_path = save_pic_path + "/good/savepic"; //保存的确切位置,根据自己的具体需要来修改 public void savefile(bitmap bm, string filename, string path) throws ioexception { string subforder = save_real_path + path; file foder = new file(subforder); if (!foder.exists()) { foder.mkdirs(); } file mycapturefile = new file(subforder, filename); if (!mycapturefile.exists()) { mycapturefile.createnewfile(); } bufferedoutputstream bos = new bufferedoutputstream(new fileoutputstream(mycapturefile)); bm.compress(bitmap.compressformat.jpeg, 80, bos); bos.flush(); bos.close(); toast.maketext(this, "保存成功", toast.length_short).show();
以上就是保存图片的方法,保存完毕之后就是要通知相册刷新了,
在4.4中:
mediascannerconnection.scanfile(this, new string[]{save_real_path+ "/" + filename}, null, new mediascannerconnection.onscancompletedlistener() { @override public void onscancompleted(string path, uri uri) { log.e( "onscancompleted: ", path); log.e( "onscancompleted: ", uri.tostring()); } });
在4.4以上的是发送广播来实现:
intent intent = new intent(intent.action_media_mounted); //这是刷新sd卡 // intent intent = new intent(intent.action_media_scanner_scan_file); // 这是刷新单个文件 uri uri = uri.fromfile(new file(save_real_path)); intent.setdata(uri); sendbroadcast(intent);
以上两种方式有所区别,刷新sd卡的uri和刷新单个文件的uri的path不同,刷新sd卡的path就是外部存储的根目录,刷新单个文件的path就是你保存图片的具体路径,这是暂时我所遇到的坑,4.4一下还没测试,如果测试出现问题,欢迎评论。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
推荐阅读
-
Android保存多张图片到本地的实现方法
-
Android实现保存图片到本地并在相册中显示
-
js保存图片到手机相册怎么保存(js实现下载文件到本地)
-
Android项目实战(五十八):Android 保存图片文件到本地,相册/图库查看不到的处理
-
Android下保存简单网页到本地(包括简单图片链接转换)实现代码
-
Android中ImageView实现选择本地图片并显示功能
-
Android保存多张图片到本地的实现方法
-
Android实现保存图片到本地并在相册中显示
-
android中实现从相册中一次性获取多张图片与拍照,并将选中的图片显示出来
-
android开发实现保存图片到本地并可以在相册中显示出来