0

My app has a built-in cropper. I want the user to select photos from the Gallery but only folders that are on the phone. By default, the Gallery shows all folders including those from PicasaWeb.

Thanks in advance.

dannyroa
  • 5,501
  • 6
  • 41
  • 59

1 Answers1

1

You need to add an extra to your intent.

intent.putExtra(Intent.EXTRA_LOCAL_ONLY, true);

Android image picker for local files only

Community
  • 1
  • 1
Steven Byle
  • 13,149
  • 4
  • 45
  • 57