Guest User

Untitled

a guest
Oct 22nd, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. storageRef.child("tu_direccion_a_la_foto/blkbl....jpg").getDownloadUrl().addOnSuccessListener(new OnSuccessListener<Uri>() {
  2. @Override
  3. public void onSuccess(Uri uri) {
  4. // Conseguimos el enlace de descarga
  5. Uri downloadUri = taskSnapshot.getMetadata().getDownloadUrl();
  6. String urlFoto = downloadUri.toString(); //El enlace a la foto hecho string
  7. }
  8. }).addOnFailureListener(new OnFailureListener() {
  9. @Override
  10. public void onFailure(@NonNull Exception exception) {
  11. // Manejamos algun error
  12. }
  13. });
Add Comment
Please, Sign In to add comment