Android Priya
Android Priya

Reputation: 676

How can I stop images generated by my application from showing in the gallery?

My app saves images to a subfolder of the DCIM folder on the SD-card in the phone.

I do not wish these images to be shown in the androids gallery app.

How can I achive this?

Upvotes: 1

Views: 2343

Answers (3)

ULLAS MOHAN.V
ULLAS MOHAN.V

Reputation: 1531

I found this solution: Stop saving photos using Android native camera

The idea is to check which files are in the gallery just before taking the picture and just after it, delete that one that is new.

It's not the cleanest solution but it works.

May It will helps you!

Upvotes: 0

Finder
Finder

Reputation: 1217

To hide your image file add . to file name for example sdcard/DEIM/yourapp/.yourimage.jpg this will hide an Image. If you want to hide one folder add . to the folder name sdcard/DEIM/.yourapp/image1.jpg

Upvotes: 1

Blackbelt
Blackbelt

Reputation: 157447

add an empty file called .nomedia in the directory where you store the images

Upvotes: 1

Related Questions