Skip to content
Advertisement

Tag: picasso

How to load image in Picasso correctly

**Hi, i’m trying load images from url like this: link As you can see, the images have different sizes. For example, the first image is 1920×1280 in size. The second image is 720×11523 in size and the last image is 720×5420 in size. But, this in my application looks like this: In this link As you can see, the images

Get Bitmap using a Target in Picasso

I’m working on movies Android app which get list of movies from an API which provides a poster path for all movies. I want to get the image as Bitmap from the image’s URL to save it as a Bitmap variable in the model class. I want to save the image as blob in the DB to retrieve it directly

Load multiple images with picasso – Android

I am trying to load multiple images from some urls using picasso library. So far I have tried this code: This code doesn’t work. When I run this code it doesn’t reach to any line within the Target interface. Someone have any ideas for why? Answer Maybe I’m missing something here, but I think into() accepts only an ImageView and

Advertisement