Hello,
I want to display gallery of videos with thumbnails in my app. Is this
what MediaStore.Video.Thumbnails.getThumbnail() do? I didn't found way
to use it. Other properties of video files are easily accessible
(MediaStore.Video.Media.DISPLAY_NAME for example), but there is
probably different logic behind that thumbnail class. Anyone know how
to fill adapter like it is in Hello views samples?
I tried something like

 Bitmap bm = MediaStore.Video.Thumbnails.getThumbnail
(getContentResolver(), position, 1, null);
 iv.setImageBitmap(bm);

but it don't work...
Any little help welcomed.

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to