我正在开发一个应用程序,我在其中使用Glide Library从服务器加载图像。但不幸的是,这不起作用,我完全没有意识到这一点,并试图解决这个问题,因为最近两天。
这是我的代码。
Glide.with(this).load(response.getBank_cash_deposit().getData().getAttributes().getAttachment()).into(mSelectedImage);
答案 0 :(得分:0)
尝试Log
您的图片回复。你是否正确image URL
。
如果image URL
正确无误,请检查space
中是否有image URL
。
如果该空间存在,则在space
函数的帮助下,使用URL String
替换%20
中的string.replace()
。
String image=response.getBank_cash_deposit().getData().getAttributes().getAttachment();
Log.d("Image",image);
如果存在空间 那么
image.replace(" ","%20");
同时在网络上查看image url
。