1

I am creating a photo selector and I want to know if there is a default album in the Android OS that exists in all Android phones. For example: "Camera" or "DCIM"?

Thanks

oznecro
  • 457
  • 5
  • 16

1 Answers1

1

You can use any of these default libraries

Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DCIM);

or

Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES);
Jinesh Francis
  • 3,377
  • 3
  • 22
  • 37