What is an image uri? Image uri inside the listview

android

Solution

URI is an address like: `http://www.google.com/image.png` it refers to the image somewhere.

It can also be a local address: `file:////something.png`

So you can attach a file that you don't have on your device and you don't want to download it.

Problem

Can someone please explain to me what's an image uri? I have an android app with a listview that can attach an image, and that listview displays the imag uri. thanks

Original source