I have a List of Uris obtained with the Gallery and the Camera. These Uris are like this: content://media/external/images/media/94. How I can get its mime type?
content://media/external/images/media/94
Instead of this:
String type = mime.getExtensionFromMimeType(cR.getType(uri));
Do this:
String type = cR.getType(uri);
And you will get this: image/jpeg.
image/jpeg