I am using following code to open google photos or any gallery app
Intent intent = new Intent(Intent.ACTION_VIEW,
Uri.parse("content://media/internal/images/media"));
startActivity(intent);
Google Photos app create albums for folders having videos & images
My app saves videos & images in particular folder in external memory. I scan new saved video & image using media service but then I need to open that album or folder for example ExternalStorage/MyAppMedia How can I do this? thanks