I am attempting to use Picasso to get three Bitmap images from a URL
Bitmap
URL
public void onCreate(Bundle savedInstanceState) { super.onC
None of above worked for me instead this
Handler uiHandler = new Handler(Looper.getMainLooper()); uiHandler.post(new Runnable(){ @Override public void run() { Picasso.with(Context) .load(imageUrl) .into(imageView); } });
Hope it may be useful for someone