-5

HOW TO Retrieve Image from URL using Firebase Realtime Database

ask code

enter image description here

1 Answers1

0

You need to use a library like Glide from Google: https://github.com/bumptech/glide or Picasso: http://square.github.io/picasso/

Glide example: GlideApp.with(this).load("http://your_URL").into(imageView);

Angelina
  • 1,473
  • 2
  • 16
  • 34