I've been using Picasso extensively to retrieve images over the internet to my app. Now, I've run into a situation where I need to retrieve a small image to the action bar (like a logo next to the title text).
Is it possible to do this with Picasso? If so, how would I do that?
You load the picture like you would any other Picasso image, but one extra step is to add a custom action bar. Something like:
and then
I found out a solution which uses Picasso's
Target
class and does not require a custom Action Bar.