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
Just use below line:-
Glide.with(context).load(uri).transform(new Transform()).into(view)
And for getting uri use below code:-
Uri.fromFile(new File(Yourpath));