Picasso in Android Studio

Viewed 30

so I'm struggling to fully understand something about the Picasso library. If I type:

Picasso.get().load(file).fit().into(letterImage)

Does this mean that the the loading of the image gets done in a background thread, without blocking the main thread or do I have to create a thread and run this line of code within that thread?

0 Answers
Related