从 sd 加载数据返回 java.lang.nullpointerException

发布于 2025-01-08 03:09:50 字数 390 浏览 1 评论 0原文

JPG 文件位置

上面的屏幕截图显示了我的 JPG 文件的路径 -/mnt/sdcard。

我尝试加载图像,但它返回了 java.lang.nullpointerException。下面是我的代码。

String imagefile ="/mnt/sdcard/KFC_Voucher.JPG";
ImageView image = (ImageView)findViewById(R.id.image);
Bitmap bm = BitmapFactory.decodeFile(imagefile);
image.setImageBitmap(bm);

请帮忙。

JPG File Location

The screen shot above show the path for my JPG file-/mnt/sdcard.

I try to load the image but it returnd java.lang.nullpointerexception. Below is my code.

String imagefile ="/mnt/sdcard/KFC_Voucher.JPG";
ImageView image = (ImageView)findViewById(R.id.image);
Bitmap bm = BitmapFactory.decodeFile(imagefile);
image.setImageBitmap(bm);

Please help.

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

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

发布评论

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

评论(1

往昔成烟 2025-01-15 03:09:50

R.id.image 必须位于您通过 setContentView() 设置的布局中,否则 findViewById 将返回 null

R.id.image has to be in the layout you set trough setContentView(), else findViewById will return null

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