Picasso Load image from filesystem
Looking in the source code I also discover that you can load the image from filesystem adding file:
string prefix to your image path. For example:
file:path/to/your/image
Also, when using startActivityForResult, you will get something like this:
Uri imageContent = data.getData();
Then, you can call Picasso.with(getContext()).load(imageContent.toString).into(imageView);
directly without need to create a Cursor
and querying for the image path.
Of course you can. Its actually pretty straight forward:
File f = new File("path-to-file/file.png");
or
File f = new File(uri);
Picasso.get().load(f).into(imageView);
also
Picasso.get().load(uri).into(imageView);
works
Yes you can.
Try:
Picasso.with(context).load(new File(YOUR_FILE_PATH)).into(imageView);
EDIT
You can also call .load(YOUR_URI)
instead as well.