本文介绍了如何从Android Mediastore加载.gif图像的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时删除!!

我需要将一些GIF加载到自定义图库视图中。使用mediastore的
只为我提供了png / jpg图像类型。经过几个小时google后,
仍无法找到答案..

i need to load a couple of gifs into a custom gallery view.using the mediastore only provides me with png/jpg image types.after a couple of hours googleing i still could not find the answer..

我用来从媒体商店加载图片的代码是:

the code i use to load images from the mediastore is:

    final String sortOrder = mPreferences.getSortMode();

    final Uri uri = android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI;

    String[] projection = { MediaStore.MediaColumns.DATA,
            MediaStore.Images.Media.BUCKET_ID, MediaStore.Images.Media.DISPLAY_NAME };

    final Cursor cursor = mContext.getContentResolver().query(uri, projection, null,
            null, sortOrder);

thnx!

推荐答案

使用字符串mimeType = MimeTypeMap.getSingleton()。getMimeTypeFromExtension(gif);

实例

String mimeType = MimeTypeMap.getSingleton().getMimeTypeFromExtension("pdf");

这篇关于如何从Android Mediastore加载.gif图像的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

1403页,肝出来的..

09-06 13:57