Loading Images With Picasso From The Internal Storage
First of all, obtain the path of the image to be loaded. Then, you can use
Picasso.with(context).load(new File(path)).into(imageView);
to load the image into an ImageView.
First of all, obtain the path of the image to be loaded. Then, you can use
Picasso.with(context).load(new File(path)).into(imageView);
to load the image into an ImageView.