I\'ve been trying and searching for an answer for the past 5 hours.
I\'m storing image from google plus to local folder and using Glide library to load the image into imagev
This Worked for me as long as you Add permissions.
File file = new File(Environment.getExternalStorageDirectory()+File.separator+"xxx/xxx/"+imgName.jpg);
Uri imageUri = Uri.fromFile(file);
Glide.with(this).load(imageUri).into(tvBestSellingProductImage3);