I'm trying to populate a Gallery view with images from a folder in the SDcard. I read the Gallery tutorial on Android Dev seen here: http://developer.android.com/resources/tutorials/views/hello-gallery.html, and can get it working with images from the drawable folder of my project.
My question is: how can I get an array of files from the Environment.getExternalStorageDirectory()+File.separator+"MyPictureDirectory folder, and then display them in the Gallery? Thanks!