I am trying to use the Android gallery to select an image. Running the gallery is easy for this.
Intent photoPickerIntent = new Intent(Intent.ACTION_PICK); photoPickerIntent.setType("image/*"); startActivityForResult(photoPickerIntent, 1);
However, I need to limit the images displayed in the gallery to a specific outline on the device (i.e. show images from only one folder). Can this be done and how?
android gallery
dstefanox Jun 26 '11 at 21:00 2011-06-26 21:00
source share