I develop a simple RSS reader and i want to show title and image of each post in a recycler view.
There is where i use Picasso to load images from an ArrayList :
public void onBindViewHolder(ViewHolder viewHolder, int i) { RssItem item = rssItems.get(i); Picasso.with(F.context).load(item.imageLink).into(viewHolder.postImage); viewHolder.postTitle.setText(item.title); viewHolder.postAuthor.setText(item.postWriter); viewHolder.postDate.setText(item.pubDate); } but it doesn't work ! I test Picasso with a single url and it works correctly , but when set the image links in a array list, it doesn't work .