Firebase Glide不显示图像

时间:2018-05-18 15:25:07

标签: java android firebase firebase-storage android-glide

搜索了很多网站,我还没有找到答案。

图片不是从Firebase上传的,老实说,我不知道它可能是什么。

提前致谢。

代码:

spaceRef = storageRef.child("Users/" + user.getEmail().toString() + "/images/Countries/Spain" /*+ chosenCountry*/);

            Glide.with(ActPhotoViewing.this.getApplicationContext())
                    .load(spaceRef)
                    .into(showImg);

.gradle中的实现

implementation 'com.firebaseui:firebase-ui-storage:3.2.1'
implementation 'com.github.bumptech.glide:glide:4.4.0'

1 个答案:

答案 0 :(得分:1)

使用FirebaseUI时,您需要使用生成的API。在构建项目时,它应该生成一个GlideApp类,您将使用它来代替Glide静态调用。

尝试:

    GlideApp.with(ActPhotoViewing.this.getApplicationContext())
            .load(spaceRef)
            .into(showImg);

如果您收到错误但未找到GlideApp,请确保您遵循此处https://github.com/firebase/FirebaseUI-Android/tree/master/storage的说明。然后清理/重建您的项目。