我确信这是一个微不足道的问题,但我没有找到答案。
我正在制作一个 Android 应用程序,我想从中打开显示多张图像的图像查看器。我知道如何只用一张图片来做到这一点:
Intent intent = new Intent();
intent.setAction(android.content.Intent.ACTION_VIEW);
File file1 = new File("/mnt/sdcard/photos/20397a.jpg");
intent.setDataAndType(Uri.fromFile(file1), "image/jpg");
startActivity(intent);
这完美地工作。但是如何将多张图像传递给查看器?
谢谢!!L.