Search code examples
androidpicassoandroid-glide

Android - Downloading percent in Picasso or Glide


I'm using picasso library for my wallpaper app I want to show the percent of loading image in the Textview.

How can i do that in picasso or glide library?

Thanks


Solution

  • It looks like neither of these libraries have such feature out of the box. You can, however, provide your own implementation.

    One way to do this with Glide using Square's OkHttp is implementing com.squareup.okhttp.ResponseBody like in this example.

    This is not an answet to your questing, but if you're not limited to Picasso or Glide, Android Universal Image Loader has simple ImageLoadingProgressListener.