excelsiorious
excelsiorious

Reputation: 485

How to best implement the system of image loading in Android Studio

The bottom line is this. There is a list of users who need to download their images from the firebase storage.

enter image description here

Downloading of all images is not rational, because memory problems are unavoidable with a large number of users.

The question: what should be done in this situation and realize this function most rationally?

Upvotes: 0

Views: 44

Answers (1)

PEHLAJ
PEHLAJ

Reputation: 10126

Try image libraries Glide or Picasso

Replace path with local folder path or server url

Glide.with (context).load (path).asBitmap().into(imageView);

These libraries will handle memory issue.

Upvotes: 1

Related Questions