Does the Android OS have a default photo album?

76 views Asked by At

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

1

There are 1 answers

0
Jinesh Francis On

You can use any of these default libraries

Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DCIM);

or

Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES);