Android Gallery (view) video (also thumbnail issues)

被刻印的时光 ゝ 提交于 2019-11-30 22:00:29

If I understand correctly, you have images and videos served by content provider and accessible as URIs. You want to create thumbnails for such images and videos.

I don't know how to do this with video files, but this is how I will implement it with image files.

  1. Open the image as InputStream using ContentResolver's openInputStream method. http://developer.android.com/reference/android/content/ContentResolver.html#openInputStream%28android.net.Uri%29

  2. Create a BitmapDrawable with the above InputStream using this method http://developer.android.com/reference/android/graphics/drawable/BitmapDrawable.html#BitmapDrawable%28android.content.res.Resources,%20java.io.InputStream%29

  3. Scale down the BitmapDrawable to desired width and height of thumbnail. Follow this tutorial. http://www.anddev.org/resize_and_rotate_image_-_example-t621.html

  4. [Optional] You may want to cache the thumbnail, so that you don't have to repeat above steps everytime the user accesses your Gallery.

I think for Images, the answers above could be useful. For videos, the class MediaMetadataRetriever is what is used by the native Gallery app., but unfortunately, that is not a published API.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!