I use the Fresco library on android, but I do not show any image that I have from my phone.
in Xml
<com.facebook.drawee.view.SimpleDraweeView
android:id="@+id/imgFile"
android:layout_width="80dp"
android:layout_height="80dp"
android:padding="5dp" />
First piece of code
imgFile.setImageURI(Uri.fromFile(new File("file:///mnt/sdcard/Download/file.jpg")));
The second piece of code
holder.imgFile.setImageURI(Uri.parse("mnt/sdcard/Download/file.jpg"));
The third piece of code
holder.imgFile.setImageURI(Uri.parse("file:///mnt/sdcard/Download/file.jpg"));
The fourth piece of code
imgFile.setImageURI(Uri.fromFile(new File("file:///mnt/sdcard/Download/file.jpg")));