I am trying to display multiple images in the default gallery app. I am able to display one with
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse("insert_filename_here"), "image/*");
startActivity(intent);
But I want to open multiple. I asked this question before and was linked to other threads, but the answers are just how to SELECT multiple images. I just want to display them. I found an answer for if they are in the same folder, but my folder has other images that I don't want to display. Any help is greatly appreciated.