Glide在我的项目中不起作用

时间:2017-12-15 07:15:23

标签: android android-glide

我正在开发一个应用程序,我在其中使用Glide Library从服务器加载图像。但不幸的是,这不起作用,我完全没有意识到这一点,并试图解决这个问题,因为最近两天。

这是我的代码。

Glide.with(this).load(response.getBank_cash_deposit().getData().getAttributes().getAttachment()).into(mSelectedImage);

1 个答案:

答案 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