What I mean to ask is that I think the getThumbnail() looks for media in the wrong location and somehow it should be made aware of the correct URI perhaps someway through ContentResolver.
On Jan 21, 4:43 pm, Tabman <[email protected]> wrote: > I used the following method to access droid incredible onboard memory > data: > > photosCursor = > mActivity.managedQuery(MediaStore.Images.Media.getContentUri("phoneStorage"), > photoColumns, null, null, MediaStore.Images.Media.DATE_MODIFIED + " > DESC"); > > How will it effect the following methods, right now it looks up > thumbnails with wrong id: > > MediaStore.Images.Thumbnails.getThumbnail(activity.getContentResolver(), > Long.valueOf(id), MediaStore.Images.Thumbnails.MINI_KIND, > thumbBitmapOptions ); > > or > > MediaStore.Video.Thumbnails.getThumbnail(activity.getContentResolver(), > Long.valueOf(id), MediaStore.Video.Thumbnails.MINI_KIND, > thumbBitmapOptions); > > I understand these methods are also somehow linked with phoneStorage > URI ? > > Thanks -- 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

