单击图像,在ImageView中将图像集打开到图库中

时间:2014-09-24 06:32:13

标签: android imageview android-gallery

我在ImageView中设置了一个图像并拥有它的uri和路径。 现在我想要在ImageView中单击该图像时,它应该弹出或以画廊中的orignl大小显示。

每个可用的代码都是从图库中提取图像,但我想在图库中查看已知图像。 请帮忙。

1 个答案:

答案 0 :(得分:2)

在点击侦听器上设置此代码:

Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse("filepath"), "image/*");
startActivity(intent);