I am using Picasso in my application.
First, I use only the format:
Picasso.with(context)....into(imgView);
Thus, I assume that I am using Picasso as a singleton. I?
Secondly, I want to use setIndicatorsEnabled . However, it cannot be added to the format above, since it is not a static method. Can I use this function in the format above?
Third, if I need to create a custom instance using Picasso.Builder(...).build() to use setIndicatorsEnabled , what is the best way to achieve a one-time use in application actions?
android singleton picasso
Mehmed
source share