tags:

views:

173

answers:

2

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.

A: 

i am experiencing the same problem. Is there a straightforward solution to this issue?

mjc
A: 

Do I need a custom content provider for this

Yes

IuriiO