Android:从可绘制文件夹中查看图像

发布于 2024-12-04 01:30:43 字数 95 浏览 0 评论 0原文

可以使用 Android 标准视觉图像应用程序将图像可视化到可绘制文件夹中吗?我希望当用户应用程序单击小图片时,应用程序可以使用 android 标准视觉图像程序对其进行可视化

It's possibile to visual an image into drawable folder with android standard visual image application ? I want that when the user application click on the tiny picture the application visual it with android standard visual image program

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

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

发布评论

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

评论(1

甜`诱少女 2024-12-11 01:30:43

据我了解您的问题,您想在默认应用程序中显示图像。你可以试试这个

Intent intent = new Intent();
intent.setAction(android.content.Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(new File(imagefilePath)), "image/png");
startActivity(intent);

As far as I understand your question, you want to display image in default app. You can try this

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