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