What is an image uri? Image uri inside the listview

Viewed 21667

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

3 Answers

URI or Uniform Resource Identifier is a compact sequence of characters that identifies an abstract or physical resource. It can be further classified as a locator, a name, or both.

Basically URI (in some cases URL or URN) will point to the image location, or will be the name of the image (why not both?).

Let's take a look at some URI examples:

Related