从 sd 加载数据返回 java.lang.nullpointerException
上面的屏幕截图显示了我的 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);
请帮忙。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
R.id.image 必须位于您通过 setContentView() 设置的布局中,否则 findViewById 将返回 null
R.id.image has to be in the layout you set trough setContentView(), else findViewById will return null