Android insertImage and the Gallery Application

Posted by Steve Jones on Stack Overflow See other posts from Stack Overflow or by Steve Jones
Published on 2010-05-03T15:18:35Z Indexed on 2010/05/03 15:38 UTC
Read the original article Hit count: 502

Filed under:
|

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.

© Stack Overflow or respective owner

Related posts about android-sdk

Related posts about android