Gubatron wrote: > I've been looking at MediaStore and subclasses, but I see no search or > iterative methods there (just a stupid keyFor(String name) method).
MediaStore represents a family of ContentProviders. ContentProvider, through a ContentResolver, offers a query() method. Various MediaStore inner classes offer Uri values you can use with ContentResolver (e.g., MediaStore.Images.Media.EXTERNAL_CONTENT_URI). -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy _Beginning Android 2_ from Apress Now Available! -- You received this message because you are subscribed to the Google Groups "Android Beginners" group. NEW! Try asking and tagging your question on Stack Overflow at http://stackoverflow.com/questions/tagged/android To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en

