我的应用程序中有自定义进度的.mov文件,我必须使用ImageView显示它。
我已尝试过以下链接中提到的所有解决方案,但似乎没有任何效果:
Load an image from assets folder
Bitmap thumb = ThumbnailUtils.createVideoThumbnail("file:///android_asset/setting_up_profile.mov",
MediaStore.Images.Thumbnails.FULL_SCREEN_KIND);
ImageView iv = (ImageView) findViewById(R.id.imgProgress);
iv.setImageBitmap(thumb);
和
InputStream stream = context.getAssets().open(path);
Drawable d= Drawable.createFromStream(stream, null);--> d is returned as null
有人可以帮助我如何展示这个.mov文件,还是应该将它从资产转移到raw或drawables。