[android-developers] Re: Is there a way to get an icon back from MediaStore

2010-01-13 Thread rben
Thank you, you are a prince among numerals On Jan 12, 6:47 am, zero zeroo...@googlemail.com wrote: with sdk  2.X , thats possible Mediastore.Images.Thumbnails.getThumbnail(ContentResolver cr, long origId, int kind, BitmapFactory.Options options); with lower sdk versions you have to query

[android-developers] Re: Is there a way to get an icon back from MediaStore

2010-01-12 Thread rben
I know that MediaStore creates an icon for each of its files. I'm wondering if there is a way to get a copy of that icon back from MediaStore, since that would save me the hassle of doing the whole crop thing. On Jan 11, 4:00 pm, rben ray.benja...@gmail.com wrote: I've figured out how to get the

[android-developers] Re: Is there a way to get an icon back from MediaStore

2010-01-12 Thread zero
with sdk 2.X , thats possible Mediastore.Images.Thumbnails.getThumbnail(ContentResolver cr, long origId, int kind, BitmapFactory.Options options); with lower sdk versions you have to query read in the files yourself, but i really don't recommend that. On Jan 12, 11:58 am, rben