You can also call .load(YOUR_URI) instead as well.
回答3:
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.