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

StackOverflow https://stackoverflow.com/questions/23134434

  •  05-07-2023
  •  | 
  •  

質問

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?

役に立ちましたか?

解決

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

他のヒント

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

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!

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top