Android Picasso: Difference between revisions
Jump to navigation
Jump to search
Line 16: | Line 16: | ||
implementation 'com.squareup.picasso:picasso:2.71828' | implementation 'com.squareup.picasso:picasso:2.71828' | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Other libraries are available such as | |||
*Glide, good for memory management | |||
*Fresco, |
Revision as of 01:43, 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)
- Flexible Source Locations
- Caching
- Image Trnasformations
- Error Handling
- Logging
- Request Management
To add it to our projects we simply add it to the gradle. At the time this was
implementation 'com.squareup.picasso:picasso:2.71828'
Other libraries are available such as
- Glide, good for memory management
- Fresco,