1

I know that in Android Studio there are some plugins for including a drawable that help in creating a ldpi, mdpi, hdpi, etc image resource.

But suppose I have an app in which some users upload images to a server and then I download the images and display them for other users, how can I adapt them so that they adapt to ldpi, mdpi, hdpi screens? Is there a library that runs on the server or client?

MithPaul
  • 119
  • 1
  • 14

1 Answers1

3

there are two ways , either you do it or let other do it

  1. you can use picasso(image loading library ) with fit function and just relax .link

  2. find the required size and compress the image size with required parameter.android guide

there are couple of other library like picasso,glide,universal image loader and lot other though picasso and glide are most popular among android developers

Code Reference Links :

Picasso

Picasso library to download images

Resize image to full width and fixed height with Picasso

Glide

Load image from SD card using Glide

Pros of libs :

  • In-Build image downloading mechanism with other features like animation,re-sizing etc
  • In-Build cache mechanism
  • Optimized written code by experienced coders
  • Can load images to bitmap , from resources etc
  • Animation support

Cons :

  • Stay in touch with docs for new updates and more consistent features
Community
  • 1
  • 1
Pavneet_Singh
  • 34,557
  • 5
  • 43
  • 59