代码如下.
private void saveImage(ImageView imageView){
imageView.setDrawingCacheEnabled(true);//开启catch,开启之后才能获取ImageView中的bitmap
Bitmap bitmap = imageView.getDrawingCache();//获取imageview中的图像
MediaStore.Images.Media.insertImage(getContentResolver(), bitmap, "这是title", "这是description");
Toast.makeText(context, "保存成功", Toast.LENGTH_SHORT).show();
imageView.setDrawingCacheEnabled(false);//关闭catch
}
时间: 2024-12-23 05:32:40