将存储的 JPG 文件加载到 ImageView 中最有效的方法是什么?

发布于 2024-09-18 08:33:32 字数 179 浏览 18 评论 0原文

我有有效的 JPG 文件,现在我想将它们加载到包含 ImageView 的布局中。我有 findViewId(R.id.myimage) 的代码。我使用 File 遵循了一些示例代码,但它不起作用。该文件存储在/data/data/com.myapp/files/someimage.jpg。

最简单有效的加载和显示方式是什么?

I have valid JPG files and now I want to load them into a layout containing an ImageView. I have code to findViewId(R.id.myimage). I followed some sample code using File but it did not work. The file is stored at /data/data/com.myapp/files/someimage.jpg.

What is the easiest and efficient way to load and display?

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

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

发布评论

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

评论(1

风筝在阴天搁浅。 2024-09-25 08:33:32
((ImageView)view).setImageBitmap(BitmapFactory.decodeFile("/data/data/com.myapp/files/someimage.jpg"));

根据你提供的少量信息,我能做的就是这些。

((ImageView)view).setImageBitmap(BitmapFactory.decodeFile("/data/data/com.myapp/files/someimage.jpg"));

With the few info you give that's all I can do.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文