Android insertImage and the Gallery Application
- by Steve Jones
I am adding a bmp file to the media store using the line below
ContentResolver cr = getContentResolver();
Uri uri = Uri.parse(MediaStore.Images.Media.insertImage(cr, bmp, "name", "now"));
I then go to the gallery application and it shows the image, but shows it under "Camera Pictures".
Is there a way to change this to its own group, perhaps to its own group? Do I need a custom content provider for this?
Thanks.