A
Android Central Question
bitmap = getBitMapFromView(svv);
ImagePath = MediaStore.Images.Media.insertImage(
getContentResolver(),
bitmap,
"demo_image",
"demo_image"
);
URI = Uri.parse(ImagePath);
Toast.makeText(Update.this, "Image Saved Successfully", Toast.LENGTH_LONG).show();
}
i want to alter this code to save this bitmap to another folder not to default picture folder
ImagePath = MediaStore.Images.Media.insertImage(
getContentResolver(),
bitmap,
"demo_image",
"demo_image"
);
URI = Uri.parse(ImagePath);
Toast.makeText(Update.this, "Image Saved Successfully", Toast.LENGTH_LONG).show();
}
i want to alter this code to save this bitmap to another folder not to default picture folder