我使用类似this的内容从网上下载图片。图像通常显示在网络上。这是图像的link。它在Android设备上成功下载但未在ImageView控件上显示。 this Image下载并成功显示。什么原因导致某些特定图像无法通过Android ImageView控件显示?
Android API等级:7
谢谢!
答案 0 :(得分:2)
此图片无法在Android浏览器中显示: http://www.mekanist.net/img/places/75/faros_20110909125521412.jpg
此问题可能是由jpeg图像格式的不受支持的细节引起的。 您应该考虑调查拇指制造商代码。
答案 1 :(得分:0)
Drawable img = Drawable.createFromPath(filePath);
filePath是您在手机SD卡绝对路径上下载的图像
ImageView ivPic=(ImageView) findViewById(R.id.ivPic);;
ivPic.setImageDrawable(img);