2

我的问题是我将使用以下链接显示 sd 卡中的一些图像

http://vikaskanani.wordpress.com/2011/07/20/android-custom-image-gallery-with-checkbox-in-grid-to-select-multiple/

用户将选择一个特定的图像,该图像将使用以下代码显示所选图像

Intent intent = new Intent();
                intent.setAction(Intent.ACTION_VIEW);
                intent.setDataAndType(Uri.parse("file://" + arrPath[id]),
                        "image/*");
                startActivity(intent);

现在,一旦用户滑动,它将转到 sd 卡中存在的其他图像,但我想显示我的应用程序中的图像,这意味着我想在默认图像查看器中显示应用程序的图像。当用户选择图像时,它会显示打开图像的应用程序列表有没有办法消除这种情况并在默认图像查看器中显示图像,一旦滑动转到应用程序中存在的下一个图像而不是来自 sd 卡

4

0 回答 0