Questions tagged [picasso]

Picasso is an open source powerful and dynamic image caching and downloading library by Square.

Working with bitmaps can be hard on Android apps. There are too many things that can go wrong. The golden rule is decode only as much as you need, never more. Picasso is the realization of this rule by Square.

With automatic canceling, transformations and a fluent API, Picasso provides a super fast, elegant solution for downloading, caching and displaying images to your Android app.

Official Site: http://square.github.io/picasso/

2541 questions
0
votes
2 answers

Picasso showing colorPrimary instead of image

I'm facing a strange issue with Picasso while loading image , it worked fine till now . i'm using Picasso in many functionality on my app but somehow it starts showing the app colorPrimary instead of the image in one case only, all other use of…
ismail alaoui
  • 5,748
  • 2
  • 21
  • 38
0
votes
3 answers

Glide and Picasso not load images from YouTube

I'm new with ImageView, Picasso, Glide. I want just to load image from url, i've tried Glide and Picasso. Both of them load images well but if i try to load images from youtube(thumbnail) - not loading. //…
Max Dev
  • 189
  • 1
  • 1
  • 12
0
votes
2 answers

How to upload and retrieve image with Picasso

I want to upload my picture into my image into my database and save it as a url and then call it to my circle image view as a profile picture. But it's not being saved as a url and it's not showing up as a profile. I have tried switching my code up.…
user7422160
0
votes
2 answers

Picasso image caching in recylceview

I am using Picasso with recylerview. Picasso is populating the imageview from url as: Picasso.get().url("url").center().fit().into(ivImageview) However as I am scrolling up an down, I noticed that the image is blank then it shows the picture…
Snake
  • 14,228
  • 27
  • 117
  • 250
0
votes
0 answers

Placeholder image showing but not actual image with Picasso and Glide - Android

I want to create a custom marker in Google Map for Android. Image for custom marker will come from URL. To load image from URL I have tried Picasso and Glide. Issue: While loading image from URL, it's always showing placeholder image. Same issue…
Maulik Dodia
  • 1,629
  • 2
  • 21
  • 48
0
votes
0 answers

how to efficiently download image from one path to be used into 2 image views in the same fragment in recycler view using picasso?

I have one download path. from that same source, I need to place the downloaded image into two image views. one for normal image view, and another is for blurred image view. those two image views overlap each other. those image views is located as…
sarah
  • 3,819
  • 4
  • 38
  • 80
0
votes
0 answers

why png files are not loading into recyclerview

I am currently working at a Android project, where I have to upload png files into Firebase Realtime-database. My app is retrieving images but when I used png files it's loading only five png files, I don't know what happened to the other png…
Tec Piranha
  • 51
  • 2
  • 10
0
votes
1 answer

Android app how to get photos of a specific user

I'm creating a social app similar to instagram on Android studio. Users will be able to upload and view photos in this app. The photos are saved on a Cloud in a folder called "ProfileImage" and the URL of the photos is saved on the MySql database,…
user11133689
0
votes
1 answer

How to display images which stored in C:/xampp/htdocs/uploads folder through PHP as middleware in android

I am getting full image path (list in JSON format) from getphotos.php. Now I want to show it in Android using Picasso but it is not showing anything. I am getting an image path in android app successfully but not showing image (path is like…
0
votes
3 answers

java.lang.NoSuchMethodError: No static method with(Landroid/content/Context;)

Hi I am trying to use the https://github.com/Swati4star/Images-to-PDF ImagesToPDF function from this library. I have added all the classes required in my application. Now I have used picasso in my application before adding the ImagesToPDF…
Sid
  • 2,792
  • 9
  • 55
  • 111
0
votes
0 answers

Picasso does not upload the image for the first time and the second attempt if

The first time you load the code, a map with several markers is displayed when you click on one, a dialog box appears where you must load the respective image of the object you sent, however the first time you load the markers when you press the…
0
votes
1 answer

Picasso is not loading Image from URL on ASP.NET Core Web API server

I'm using Picasso in my application to load image from url and it's working fine until I decided to move all of my images into my Asp.net Core Web API server. At first I wasn't able to access the url because I forgot to enable serving static files…
EagerToLearn
  • 675
  • 7
  • 24
0
votes
1 answer

Image Uploading to firebase successfully but not showing in phone

I am trying to build a messenger type app. And for this, I have uploaded an image from my phone to firebase. And the image is successfully stored in firebase storage. And I am trying to show the image on my phone. And I use Picasso to retrieve the…
0
votes
1 answer

Can not load an image from url using Picasso?

I am trying to load an image using Picasso but nothing renders. The idea of the code is to choose an image from the device. Later we upload it to the server and show it to the user. First two parts are implemented, but the problem is image doesn't…
Ahmed fego
  • 33
  • 7
0
votes
0 answers

Picasso does not load images over mobile network?

I am using picasso library for loading images from internet. While I am using wifi there is no trouble with picasso and all images loading finely. But when I use mobile network (like 3G, LTE) picasso does not load images, and only shows placeholder.…
YZE
  • 16
  • 1
1 2 3
99
100