Picasso.with(context).load("url").into(imageView);
Here instead of url i want bitmap how can i achieve this. like below-
Picasso.with(context).load(bitmap).into(imageView);
This should work for you. Use the returned URI with Picasso.
(taken from: is there away to get uri of bitmap with out save it to sdcard?)
public Uri getImageUri(Context inContext, Bitmap inImage) {
ByteArrayOutputStream bytes = new ByteArrayOutputStream();
inImage.compress(Bitmap.CompressFormat.JPEG, 100, bytes);
String path = MediaStore.Images.Media.insertImage(inContext.getContentResolver(), inImage, "Title", null);
return Uri.parse(path);
}