标签:
iv_photo.buildDrawingCache();
iv_photo.setBackgroundColor(mContext.getResources().getColor(R.color.TextColorWhite));
iv_photo.setDrawingCacheEnabled(true);
Bitmap bitmap = iv_photo.getDrawingCache();
SimpleDateFormat formatter = new SimpleDateFormat("yyyy年MM月dd日 HH:mm:ss");
Date curDate = new Date(System.currentTimeMillis());// 获取当前时间
String str = formatter.format(curDate);
MediaStore.Images.Media.insertImage(mContext.getContentResolver(), bitmap, str, "");
UpdateUserPhotoActivity.this.sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, Uri.parse("file://"
+ Environment.getExternalStorageDirectory())));
iv_photo.setBackgroundColor(mContext.getResources().getColor(R.color.black));
Toast.makeText(mContext,"保存相册成功!",Toast.LENGTH_SHORT).show();
标签:
原文地址:http://www.cnblogs.com/qstext/p/4462854.html