So when I upload an image onto Firebase Storage, the getDownloadUrl()
method generates a string such as: com.google.android.gms.tasks.zzu@275cc4
Now I'm trying to place the image uploaded into an ImageView
:
ImageView img;
img = v.findViewById(R.id.imgView);
Glide.with(getApplicationContext()).load("com.google.android.gms.tasks.zzu@275cc4").into(img);
This doesn't seem to load the image. I tried with the full firebase url https://firebasestorage.googleapis.com/v0/.....
and this worked, but I can't seem to find a method that generates this when I upload an image?