将ImageView中的图片保存到本地相册

2018-07-20    来源:open-open

容器云强势上线!快速搭建集群,上万Linux镜像随意使用
    private void SaveImageToSysAlbum() {  
            if (FileUtil.isSdCardExist()) {  
                BitmapDrawable bmpDrawable = (BitmapDrawable)mFullImageView.getDrawable();  
                Bitmap bmp = bmpDrawable.getBitmap();  
                if (bmp != null) {  
                    try {  
                        ContentResolver cr = getContentResolver();  
                        String url = MediaStore.Images.Media.insertImage(cr, bmp,  
                                String.valueOf(System.currentTimeMillis()), "");  
                        Toast.makeText(this, getString(R.string.save_succ), Toast.LENGTH_SHORT).show();  
      
                    } catch (Exception e) {  
                        e.printStackTrace();  
                    }  
                }else {  
                    Toast.makeText(this, getString(R.string.no_iamge_save_fail), Toast.LENGTH_SHORT).show();  
                }  
            }else {  
                Toast.makeText(this, getString(R.string.no_sdcard_save_fail), Toast.LENGTH_SHORT).show();  
            }  
            sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED, Uri.parse("file://"+ Environment.getExternalStorageDirectory())));  
        }  

标签: ssd

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点!
本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。

上一篇:Android获取当前时间与星期几

下一篇:C语言实现的日历