我尝试加载位于Firebase存储中的图像时遇到问题。在我的Firebase项目中,我在名为“imgProjects”的文件夹中存储了一个名为“profile.png”的图像。
在StackOverflow中搜索,我发现一些答案表明使用Glide将图像加载到“ImageView”元素中,但是不能正常工作......
在我的活动中,我试过:
FirebaseStorage storage2 = FirebaseStorage.getInstance("gs://myURLfirebaseProjecy/profile.png"); //I get this URL through firebase console
Glide.with(this)
.load(storage2)
.into(imgPerfil);
和
StorageReference storageRef = storage.getReference();
StorageReference imagesRef = storageRef.child("imgProjects\profile.png");
Glide.with(this)
.load(imagesRef)
.into(imgPerfil);
我在java文件类中定义了“MyAppGlideModule”
@GlideModule
public class MyAppGlideModule extends AppGlideModule {
@Override
public void registerComponents(Context context, Glide glide, Registry registry) {
// Register FirebaseImageLoader to handle StorageReference
registry.append(StorageReference.class, InputStream.class,
new FirebaseImageLoader.Factory());
}
}
我设置了依赖:
implementation 'com.firebaseui:firebase-ui-storage:3.3.0'
implementation 'com.google.firebase:firebase-storage:16.0.5'
当我加载Activity时,ImageView它是空的...我需要使用“gs://”引用或相对路径。
对不起但是......我能做些什么来解决我的问题?
如果你知道你的形象是什么,你可以得到你的形象: -
StorageReference mImageStorage = FirebaseStorage.getInstance().getReference();
StorageReference ref = mImageStorage.child("storage name")
.child("your image name.jpg");
ref.getDownloadUrl().addOnCompleteListener(new OnCompleteListener<Uri>() {
@Override
public void onComplete(@NonNull Task<Uri> task) {
if (task.isSuccessful()) {
Uri downUri = task.getResult();
String imageUrl = downUri.toString();
Toast.makeText(MainActivity.this, imageUrl , Toast.LENGTH_SHORT).show();
}else{
Toast.makeText(MainActivity.this, ""+task.getException(), Toast.LENGTH_SHORT).show();
}
}
});