概述
public String save(Context context) {
String fileName = "mosaic_"+System.currentTimeMillis()+".png";
File file = new File(FileUtils.getMosaicDir(),fileName);
try {
FileOutputStream outputStream = new FileOutputStream(file);
mBitmap.compress(Bitmap.CompressFormat.PNG,100,outputStream);
outputStream.flush();
outputStream.close();
// 最后通知图库更新
context.sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, Uri.parse("file://" + file.getAbsolutePath())));
return file.getPath();
} catch (FileNotFoundException e) {
e.printStackTrace();
return "";
} catch (IOException e) {
e.printStackTrace();
return "";
}
}
通知图库更新就行了
原文地址:https://www.jianshu.com/p/32e6f28324c9
最后
以上就是正直灰狼为你收集整理的Android拍照/裁剪 保存完图片,系统相册不显示问题解决。的全部内容,希望文章能够帮你解决Android拍照/裁剪 保存完图片,系统相册不显示问题解决。所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复