@Override
protected Bitmap doInBackground(Void... params) {
Bitmap bitmap = null;
try {
bitmap = ThumbnailUtils.createVideoThumbnail(mImageKey, Thumbnails.FULL_SCREEN_KIND);
if (bitmap != null) {
bitmap = Bitmap.createScaledBitmap(bitmap, mMaxWidth, mMaxWidth, false);
addBitmapToCache(mImageKey, bitmap);
return bitmap;
}
return null;
} catch (Exception e) {
if (e != null) {
e.printStackTrace();
}
return null;
}
}
GalleryCache.java 文件源码
java
阅读 42
收藏 0
点赞 0
评论 0
项目:MediaChooser
作者:
评论列表
文章目录