Skip to content

apptech44/picasso-library-app

Repository files navigation

Picasso

Displaying images is easiest using a third party library such as Picasso from Square which will download and cache remote images and abstract the complexity behind an easy to use DSL. Before Using Picasso , do not forget to add internet permission in the manifest file .

GRADLE

implementation 'com.squareup.picasso:picasso:2.71828'

Picasso Use

Picasso.get().load(movies.getMovieImages()).placeholder(R.mipmap.ic_launcher)
                .error(R.mipmap.ic_launcher)
                .resize(350, 350).into(holder.movieImage);

Screen Short

Work Done!

About

A powerful image downloading and caching library for Android

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages