I have tried and searched for an answer in the last 5 hours. I save the image from google plus to a local folder and using the Glide library to upload the image to the image.
The uri file is the file: ///storage/emulated/0/MyApp/ProfilePics/profile_user1.jpg
I use the code below to upload an image using a slide:
Glide.with(ProfileActivity.this).load(Uri.fromFile(new File(sharedPrefMan.getImageUrl()))).placeholder(R.drawable.placeholder_profile).into(imgProfilePic);
where sharedPrefMan.getImageUrl () returns / storage / emulated / 0 / MyApp / ProfilePics / profile_user1.jpg
The image is present in this place.
source share