Question

from this question I understand that if I want to remove a reference for a (video) file from the media library, I can do this:

Uri videoUri = MediaStore.Video.Media.EXTERNAL_CONTENT_URI;
Uri itemUri = ContentUris.withAppendedId(videoUri, mediaId);
getContentResolver().delete(itemUri, null, null);

what I miss is how to retrieve the mediaId.

For this file I have its path, filename, size, etc.

Any idea?

Was it helpful?

Solution

here the answer, look at the method getVideoIdFromFilePath:

https://stackoverflow.com/a/11603899/1865860

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top