在android中的原生imageViewer中查看图像

发布于 2024-10-31 18:45:22 字数 173 浏览 0 评论 0原文

我已经检索到图像的uri 但是当我使用

startActivity(new Intent(Intent.ACTION_VIEW,mediaUri));

时该图像是在图像查看器中查看的,但我也可以看到其他画廊图像。

如何避免这种情况。

我只想在图像查看器中打开单个图像。

I have retrieved the uri of the image
But when i use

startActivity(new Intent(Intent.ACTION_VIEW,mediaUri));

the image is viewed in image viewer but i can also see other gallery images.

How to avoid this.

I only want the single image to open in image viewer.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最偏执的依靠 2024-11-07 18:45:22

这可能对你有帮助

Intent i = new Intent(android.content.Intent.ACTION_VIEW);
i.setDataAndType(Uri.parse("file:///sdcard/path/to/myfile.png"),"image/png");
startActivity(i); 

This may help you

Intent i = new Intent(android.content.Intent.ACTION_VIEW);
i.setDataAndType(Uri.parse("file:///sdcard/path/to/myfile.png"),"image/png");
startActivity(i); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文