-
Notifications
You must be signed in to change notification settings - Fork 327
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Gallery shows deleted files #171
Comments
Hmm interesting, have you tried triggering the media scanner after you delete the file? |
No, I just removed photo in gallery and noticed that it is still visible in ImagePickerActivity.
|
Just a side note: Checking for each file if it exists via |
I'm facing the same problem. In my case, I have to move the captured/gallery image to the apps external directory. After moving some selected images to apps external directory, the ImagePicker shows those images again in the gallery which does not exist. |
@esafirm @deputat007 I experienced this issue and got to know that the entry in |
Please check in ImageFileLoader if file exists
if (file != null && file.exists()) { if (exlucedImages != null && exlucedImages.contains(file)) { continue; }
The text was updated successfully, but these errors were encountered: