Android添加照片到系统图库
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android添加照片到系统图库相关的知识,希望对你有一定的参考价值。
1 Intent mediaScanIntent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE); 2 mediaScanIntent.setData(Uri.fromFile(imgFile)); 3 sendBroadcast(mediaScanIntent);
// 把文件插入到系统图库 try { MediaStore.Images.Media.insertImage(getContentResolver(), imgFile.getAbsolutePath(), imgFile.getName(), null); } catch (FileNotFoundException | NullPointerException e) { e.printStackTrace(); } // 通知图库更新 sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, Uri.parse("file://" + imgFile.getAbsolutePath())));
以上是关于Android添加照片到系统图库的主要内容,如果未能解决你的问题,请参考以下文章
Android笔记67Android之使用系统中的相机功能(拍照保存照片显示拍摄的照片照片保存到图库等操作)
在 Android 浏览器中使用 input type=file capture=camera 上传照片时,防止将照片自动保存到图库