Android Picasso: Difference between revisions

From bibbleWiki
Jump to navigation Jump to search
Line 1: Line 1:
=Introduction=
=Introduction=
Picasso is a library for managing images on Android
Picasso is a library for managing images on Android and is very simple to use
<syntaxhighlight lang="kotlin">
<syntaxhighlight lang="kotlin">
Picasso.with(getContext()).load(sampleURI).into(imageView)
Picasso.with(getContext()).load(sampleURI).into(imageView)
</syntaxhighlight>
</syntaxhighlight>
[[File:Picasso rendering.png|800px]]
[[File:Picasso rendering.png|800px]]
Picasso Provides
*Flexible Source Locations
*Caching
*Image Trnasformations
*Error Handling
*Logging
*Request Management

Revision as of 01:37, 25 January 2021

Introduction

Picasso is a library for managing images on Android and is very simple to use

Picasso.with(getContext()).load(sampleURI).into(imageView)

Picasso Provides

  • Flexible Source Locations
  • Caching
  • Image Trnasformations
  • Error Handling
  • Logging
  • Request Management