Android Picasso: Difference between revisions
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 |