您的位置:首页 > 移动开发 > Android开发

android如何将生成的图片保存至手机相册并显示出来

2016-04-12 22:43 816 查看
</pre><pre name="code" class="java">生成图片后,保存到指定位置,或者直接保存到相册,但是保存后相册不能直接看到,这时就需要同时通知系统图库更新
//保存文件到指定路径public void saveMyBitmap(Context context,Bitmap bitmap) {String sdCardDir=Environment.getExternalStorageDirectory()+"/DCIM/";File appDir =new File(sdCardDir, "HappyBirthday");if (!appDir.exists()) {appDir.mkdir();}String fileName = "HappyBirthday"+System.currentTimeMillis() + ".jpg";File f = new File(appDir,fileName);try {FileOutputStream fos = new FileOutputStream(f);bitmap.compress(Bitmap.CompressFormat.JPEG, 100, fos);fos.flush();fos.close();} catch (FileNotFoundException e) {e.printStackTrace();} catch (IOException e) {e.printStackTrace();} 
 // 通知图库更新Intent intent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE);Uri uri = Uri.fromFile(f);intent.setData(uri);context.sendBroadcast(intent);
当然方法不止这一种,但是在实际运行中,这个是最有效的。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  android 图片 保存 相册