我从服务器下载图像并将其保存在 SD 卡中。
当我尝试使用我的代码获取相同的内容时,它给出了一个错误SkImageDecoder:: Factory returned null
请帮我...
我读取文件的代码如下:
try{
extStorageDirectory = Environment.getExternalStorageState().toString();
extStorageDirectory = Environment.getExternalStorageDirectory().toString();
extStorageDirectory = extStorageDirectory + "/egnuri/456.png";
// egnuri is directory name. and 456.png is imagename.
Bitmap loadimage = BitmapFactory.decodeFile(extStorageDirectory);
imView.setImageBitmap(loadimage);
}catch(Exception e){
e.printStackTrace();
}