Adding an album to an Android photo album (in code)

I would like to be able to create an Android application that will add additional photo albums to the standard Android photo gallery. The contents of these albums will be deleted, similar to how Picasa albums are processed. I looked at the media scanner and didn’t seem to be processing the deleted content, and I couldn’t find links to the gallery itself or to any other ways of providing additional photo albums.

I did some searches on the Android developers site, here and in general Googling, and came up with a short one ... does anyone have any suggestions on how to do this?

Thanks in advance.

+6
source share
1 answer

If you are talking about the Android gallery, this is what ive found out:

Android albums are not really albums, but folders. You just need to create a folder with the name that you want the album to show, and it must have at least one image.

Hope this helps!

+1
source

Source: https://habr.com/ru/post/918472/


All Articles