1

我想在 android 默认 imageviewer 中显示多个图像。我正在从 sdcard 到默认 android imageviewer 查看一个图像。如果不可能,我想从 drawable 文件夹中显示多个图像,或者如何从 sdcard 文件夹中查看图像,例如images 文件夹包含多个图像,以在 android 的默认 imageview 中查看所有图像。

这是从 sdcard 到 android 默认图像查看器的查看图像的代码:

    Intent intent = new Intent();
    intent.setAction(Intent.ACTION_VIEW);
    intent.setDataAndType(Uri.parse("file://" + "/sdcard/slide-4.jpg"), "image/*");
    startActivity(intent);

我想显示的不仅仅是来自可绘制文件夹或任何 sdcard 文件夹或资产文件夹的图像,可以帮助我非常感激!

提前致谢!

4

0 回答 0